Skip to content

Commit ebc68c9

Browse files
committed
Comment out actions related to image signing.
1 parent 3846ae5 commit ebc68c9

File tree

1 file changed

+19
-19
lines changed

1 file changed

+19
-19
lines changed

.github/workflows/docker-publish.yml

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -39,11 +39,11 @@ jobs:
3939
with:
4040
submodules: recursive
4141

42-
# Install the cosign tool except on PR
43-
# https://github.com/sigstore/cosign-installer
44-
- name: Install cosign
45-
if: github.event_name != 'pull_request'
46-
uses: sigstore/[email protected]
42+
# # Install the cosign tool except on PR
43+
# # https://github.com/sigstore/cosign-installer
44+
# - name: Install cosign
45+
# if: github.event_name != 'pull_request'
46+
# uses: sigstore/[email protected]
4747

4848
# Workaround: https://github.com/docker/build-push-action/issues/461
4949
- name: Setup Docker buildx
@@ -89,17 +89,17 @@ jobs:
8989
cache-to: type=gha,mode=max
9090

9191

92-
# Sign the resulting Docker image digest except on PRs.
93-
# This will only write to the public Rekor transparency log when the Docker
94-
# repository is public to avoid leaking data. If you would like to publish
95-
# transparency data even for private images, pass --force to cosign below.
96-
# https://github.com/sigstore/cosign
97-
- name: Sign the published Docker image
98-
if: ${{ github.event_name != 'pull_request' }}
99-
env:
100-
COSIGN_EXPERIMENTAL: "true"
101-
# This step uses the identity token to provision an ephemeral certificate
102-
# against the sigstore community Fulcio instance.
103-
run: echo "${{ steps.meta.outputs.tags }}" | xargs -I {} cosign sign --tlog-upload=false {}@${{ steps.build-and-push.outputs.digest }}
104-
# --tlog-upload=false because otherwise it fails waiting for a
105-
# human to accept terms.
92+
# # Sign the resulting Docker image digest except on PRs.
93+
# # This will only write to the public Rekor transparency log when the Docker
94+
# # repository is public to avoid leaking data. If you would like to publish
95+
# # transparency data even for private images, pass --force to cosign below.
96+
# # https://github.com/sigstore/cosign
97+
# - name: Sign the published Docker image
98+
# if: ${{ github.event_name != 'pull_request' }}
99+
# env:
100+
# COSIGN_EXPERIMENTAL: "true"
101+
# # This step uses the identity token to provision an ephemeral certificate
102+
# # against the sigstore community Fulcio instance.
103+
# run: echo "${{ steps.meta.outputs.tags }}" | xargs -I {} cosign sign --tlog-upload=false {}@${{ steps.build-and-push.outputs.digest }}
104+
# # --tlog-upload=false because otherwise it fails waiting for a
105+
# # human to accept terms.

0 commit comments

Comments
 (0)