Skip to content

Commit

Permalink
ci: use ignore-error instead of ignore-errors for cache-to
Browse files Browse the repository at this point in the history
BuildKit's docs say the correct option here is `ignore-error`. I
guess BuildKit doesn't reject unknown arguments?!
  • Loading branch information
indygreg committed Mar 3, 2024
1 parent 84e8090 commit 7dbef16
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ jobs:
type=registry,ref=ghcr.io/${{ env.REPO_NAME }}:${{ matrix.image }}-main
type=registry,ref=ghcr.io/indygreg/python-build-standalone:${{ matrix.image }}-main
cache-to: |
type=registry,ref=ghcr.io/${{ env.REPO_NAME }}:${{ matrix.image }}-${{ env.GIT_REF_NAME }},ignore-errors=true
type=registry,ref=ghcr.io/${{ env.REPO_NAME }}:${{ matrix.image }}-${{ env.GIT_REF_NAME }},ignore-error=true
outputs: |
type=docker,dest=build/image-${{ matrix.image }}.tar
Expand Down

0 comments on commit 7dbef16

Please sign in to comment.