Skip to content
This repository has been archived by the owner on Apr 26, 2024. It is now read-only.

Commit

Permalink
Fix an error in the docker workflow (#10461)
Browse files Browse the repository at this point in the history
  • Loading branch information
richvdh committed Jul 22, 2021
1 parent f76f8c1 commit 4c3fdfc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}"
Expand Down
1 change: 1 addition & 0 deletions changelog.d/10461.misc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Fix an error which prevented the Github Actions workflow to build the docker images from running.

0 comments on commit 4c3fdfc

Please sign in to comment.