blob: c613e7e150289a90b116ebe29f8ee9893765a736 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
name: Curie-CLI Build
on:
push
jobs:
docker-hub:
name: Deployment
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Deploy Step
uses: docker/build-push-action@v1
with:
username: ${{ secrets.DOCKER_HUB_USER }}
password: ${{ secrets.DOCKER_HUB_TOKEN }}
repository: pharmai/plip
tag_with_ref: true
push: ${{ startsWith(github.ref, 'refs/tags/') }}
|