From 4be08f7bdd77991e9e453c1cda863c3f20c338d5 Mon Sep 17 00:00:00 2001 From: Navan Chauhan Date: Thu, 2 Jul 2020 20:48:33 +0530 Subject: initial commit --- .github/workflows/action.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/action.yml (limited to '.github/workflows/action.yml') 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 -- cgit v1.2.3