Fix an error in the docker workflow (#10461)

This commit is contained in:
Richard van der Hoff 2021-07-22 21:50:30 +01:00 committed by GitHub
parent f76f8c1567
commit 4c3fdfc808
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View file

@ -54,7 +54,7 @@ jobs:
# we do an amd64-only build, before following up with a multiarch build.
- name: Build and push amd64
uses: docker/build-push-action@v2
if: "${{ startsWith(github.ref, 'refs/tags/v' }}"
if: "${{ startsWith(github.ref, 'refs/tags/v') }}"
with:
push: true
labels: "gitsha1=${{ github.sha }}"

1
changelog.d/10461.misc Normal file
View file

@ -0,0 +1 @@
Fix an error which prevented the Github Actions workflow to build the docker images from running.