diff options
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/action.yml | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/.github/workflows/action.yml b/.github/workflows/action.yml new file mode 100644 index 0000000..3e97dac --- /dev/null +++ b/.github/workflows/action.yml @@ -0,0 +1,19 @@ +name: PLIP 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/') }}
\ No newline at end of file |