name: docker-build on: push: tags: - '*' jobs: docker-build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - uses: docker/login-action@f054a8b539a109f9f41c372932f1ae047eff08c9 with: registry: ghcr.io username: ${{ github.actor }} password: ${{ secrets.GITHUB_TOKEN }} - run: make docker-push