Skip to content

Commit

Permalink
add consent to cosgin
Browse files Browse the repository at this point in the history
  • Loading branch information
almenscorner committed Sep 26, 2023
1 parent b20d778 commit c06b5e3
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/docker-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ jobs:
COSIGN_EXPERIMENTAL: true
# This step uses the identity token to provision an ephemeral certificate
# against the sigstore community Fulcio instance.
run: cosign sign ${{ steps.meta.outputs.tags }}@${{ steps.build-and-push.outputs.digest }}
run: cosign sign --yes ${{ steps.meta.outputs.tags }}@${{ steps.build-and-push.outputs.digest }}

build-nginx:

Expand Down Expand Up @@ -152,7 +152,7 @@ jobs:
COSIGN_EXPERIMENTAL: true
# This step uses the identity token to provision an ephemeral certificate
# against the sigstore community Fulcio instance.
run: cosign sign ${{ steps.meta.outputs.tags }}@${{ steps.build-and-push.outputs.digest }}
run: cosign sign --yes ${{ steps.meta.outputs.tags }}@${{ steps.build-and-push.outputs.digest }}

build-worker:

Expand Down Expand Up @@ -217,7 +217,7 @@ jobs:
COSIGN_EXPERIMENTAL: true
# This step uses the identity token to provision an ephemeral certificate
# against the sigstore community Fulcio instance.
run: cosign sign ${{ steps.meta.outputs.tags }}@${{ steps.build-and-push.outputs.digest }}
run: cosign sign --yes ${{ steps.meta.outputs.tags }}@${{ steps.build-and-push.outputs.digest }}

build-beat:

Expand Down Expand Up @@ -282,7 +282,7 @@ jobs:
COSIGN_EXPERIMENTAL: true
# This step uses the identity token to provision an ephemeral certificate
# against the sigstore community Fulcio instance.
run: cosign sign ${{ steps.meta.outputs.tags }}@${{ steps.build-and-push.outputs.digest }}
run: cosign sign --yes ${{ steps.meta.outputs.tags }}@${{ steps.build-and-push.outputs.digest }}

build-redis:

Expand Down Expand Up @@ -347,4 +347,4 @@ jobs:
COSIGN_EXPERIMENTAL: true
# This step uses the identity token to provision an ephemeral certificate
# against the sigstore community Fulcio instance.
run: cosign sign ${{ steps.meta.outputs.tags }}@${{ steps.build-and-push.outputs.digest }}
run: cosign sign --yes ${{ steps.meta.outputs.tags }}@${{ steps.build-and-push.outputs.digest }}

0 comments on commit c06b5e3

Please sign in to comment.