Skip to content

Commit 70be179

Browse files
Merge pull request #4 from akkeris/gitactions
git actions
2 parents 25d844b + 7042553 commit 70be179

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

.github/workflows/dockerimage.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: Publish Docker
2+
on:
3+
release:
4+
types: [published]
5+
jobs:
6+
build:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- uses: actions/checkout@master
10+
- name: Publish to Registry
11+
uses: elgohr/Publish-Docker-Github-Action@master
12+
with:
13+
name: akkeris/influx-api
14+
username: ${{ secrets.DockerUser }}
15+
password: ${{ secrets.DockerPassword }}
16+
tag_names: true

0 commit comments

Comments
 (0)