summaryrefslogtreecommitdiff
path: root/.github/workflows/docker.yml
blob: c7b170b82c4b81177bf7729c6414461c301b0833 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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