Skip to content

Commit c4e4f72

Browse files
author
Peter Pratscher
authored
ADD CI
1 parent 24287bd commit c4e4f72

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

.github/workflows/main.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)