aboutsummaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorNavan Chauhan <navanchauhan@gmail.com>2020-07-02 20:48:33 +0530
committerNavan Chauhan <navanchauhan@gmail.com>2020-07-02 20:48:33 +0530
commit4be08f7bdd77991e9e453c1cda863c3f20c338d5 (patch)
tree083e8e91622221185a28fd50754abc2f86b1df43 /.github
initial commit
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/action.yml19
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