We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 24287bd commit c4e4f72Copy full SHA for c4e4f72
.github/workflows/main.yml
@@ -0,0 +1,20 @@
1
+name: Publish Docker images
2
+
3
+on:
4
+ # Trigger the workflow on push or pull request,
5
+ # but only for the master branch
6
+ push:
7
+ branches:
8
+ - master
9
10
+jobs:
11
+ build:
12
+ runs-on: ubuntu-latest
13
+ steps:
14
+ - uses: actions/checkout@master
15
+ - name: Publish to Dockerhub Registry
16
+ uses: elgohr/Publish-Docker-Github-Action@master
17
+ with:
18
+ name: gobitfly/coda-explorer
19
+ username: ${{ secrets.DOCKER_USERNAME }}
20
+ password: ${{ secrets.DOCKER_PASSWORD }}
0 commit comments