diff options
author | Roman Gräf <romangraef@loves.dicksinhisan.us> | 2020-11-29 22:32:22 +0100 |
---|---|---|
committer | Roman Gräf <romangraef@loves.dicksinhisan.us> | 2020-11-29 22:33:18 +0100 |
commit | cfd478b17ec4ea9898885a8dd4bd72edf1548a9c (patch) | |
tree | ee160236d9c10dcd4343bdc53882aa573ec84655 /.github/workflows | |
download | herrschwarzify-cfd478b17ec4ea9898885a8dd4bd72edf1548a9c.tar.gz herrschwarzify-cfd478b17ec4ea9898885a8dd4bd72edf1548a9c.tar.bz2 herrschwarzify-cfd478b17ec4ea9898885a8dd4bd72edf1548a9c.zip |
Initial commit
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/docker.yml | 23 |
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 + |