summaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authorRoman Gräf <romangraef@loves.dicksinhisan.us>2020-11-29 22:32:22 +0100
committerRoman Gräf <romangraef@loves.dicksinhisan.us>2020-11-29 22:33:18 +0100
commitcfd478b17ec4ea9898885a8dd4bd72edf1548a9c (patch)
treeee160236d9c10dcd4343bdc53882aa573ec84655 /.github/workflows
downloadherrschwarzify-cfd478b17ec4ea9898885a8dd4bd72edf1548a9c.tar.gz
herrschwarzify-cfd478b17ec4ea9898885a8dd4bd72edf1548a9c.tar.bz2
herrschwarzify-cfd478b17ec4ea9898885a8dd4bd72edf1548a9c.zip
Initial commit
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/docker.yml23
1 files changed, 23 insertions, 0 deletions
diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml
new file mode 100644
index 0000000..c7b170b
--- /dev/null
+++ b/.github/workflows/docker.yml
@@ -0,0 +1,23 @@
+on:
+ push:
+ branches:
+ - python
+
+name: "Publish Docker Image"
+
+jobs:
+ build:
+ runs-on: ubuntu-latest
+ steps:
+ - name: Checkout Code
+ uses: actions/checkout@master
+ - name: Publish Docker image
+ uses: docker/build-push-action@v1
+ with:
+ username: ${{ github.actor }}
+ password: ${{ secrets.GITHUB_TOKEN }}
+ registry: docker.pkg.github.com
+ repository: romangraef/herrschwarzify/python
+ tag_with_ref: true
+ tags: latest
+