File tree Expand file tree Collapse file tree 2 files changed +19
-2
lines changed
Expand file tree Collapse file tree 2 files changed +19
-2
lines changed Original file line number Diff line number Diff line change 9191 TAGS : ${{ steps.meta.outputs.tags }}
9292 DIGEST : ${{ steps.build-and-push.outputs.digest }}
9393 run : |
94- echo "${TAGS}" | xargs -n1 -I {} cosign sign --yes --certificate-expiry 8760h {}@${DIGEST}
94+ echo "${TAGS}" | xargs -n1 -I {} cosign sign --yes {}@${DIGEST}
9595
9696 - name : Verify signatures
9797 if : ${{ github.event_name != 'pull_request' }}
@@ -104,6 +104,24 @@ jobs:
104104 --certificate-oidc-issuer=https://token.actions.githubusercontent.com \
105105 {}@${DIGEST}
106106
107+ # - name: Sign the published Docker image
108+ # if: ${{ github.event_name != 'pull_request' }}
109+ # env:
110+ # TAGS: ${{ steps.meta.outputs.tags }}
111+ # DIGEST: ${{ steps.build-and-push.outputs.digest }}
112+ # run: echo "${TAGS}" | xargs -I {} cosign sign --yes {}@${DIGEST}
113+ # - name: Verify ghcr image signatures
114+ # if: ${{ github.event_name != 'pull_request' }}
115+ # shell: bash
116+ # env:
117+ # COSIGN_EXPERIMENTAL: 1
118+ # TAGS: ${{ steps.meta.outputs.tags }}
119+ # DIGEST: ${{ steps.build-and-push.outputs.digest }}
120+ # run: |
121+ # echo "${TAGS}" | xargs -I {} cosign verify \
122+ # --certificate-identity=https://github.com/${{ github.repository }}/.github/workflows/release-dogecoind.yml@${{ github.ref }} \
123+ # --certificate-oidc-issuer=https://token.actions.githubusercontent.com \
124+ # "{}@${DIGEST}"
107125 generate-provenance :
108126 needs : [build]
109127 if : ${{ github.event_name != 'pull_request' }}
Original file line number Diff line number Diff line change @@ -5,7 +5,6 @@ ARG VERSION=v30.0
55
66ENV DEBIAN_FRONTEND="noninteractive" TZ="Europe/London"
77
8-
98# https://github.com/bitcoin/bitcoin/blob/master/doc/build-unix.md#linux-distribution-specific-instructions
109RUN <<-EOF
1110 set -e
You can’t perform that action at this time.
0 commit comments