Skip to content

Commit 17d30c2

Browse files
v2
1 parent fecab9c commit 17d30c2

File tree

2 files changed

+19
-2
lines changed

2 files changed

+19
-2
lines changed

.github/workflows/release-image.yml

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ jobs:
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' }}

images/bitcoind/Dockerfile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ ARG VERSION=v30.0
55

66
ENV DEBIAN_FRONTEND="noninteractive" TZ="Europe/London"
77

8-
98
# https://github.com/bitcoin/bitcoin/blob/master/doc/build-unix.md#linux-distribution-specific-instructions
109
RUN <<-EOF
1110
set -e

0 commit comments

Comments
 (0)