Skip to content

Commit c63554c

Browse files
authored
Merge pull request #985 from fluxcd/cosign-fix
Fix cosign workflow
2 parents 98530d9 + be8ed8a commit c63554c

File tree

5 files changed

+3
-3
lines changed

5 files changed

+3
-3
lines changed

cosign/README.md .cosign/README.md

File renamed without changes.
File renamed without changes.
File renamed without changes.

.github/workflows/release.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -56,14 +56,14 @@ jobs:
5656
- name: Sign image
5757
run: |
5858
echo -n "${{secrets.COSIGN_PASSWORD}}" | \
59-
cosign sign -key ./cosign/cosign.key -a git_sha=$GITHUB_SHA \
59+
cosign sign -key ./.cosign/cosign.key -a git_sha=$GITHUB_SHA \
6060
ghcr.io/fluxcd/flagger:${{ steps.prep.outputs.VERSION }}
6161
- name: Check images
6262
run: |
6363
docker buildx imagetools inspect ghcr.io/fluxcd/flagger:${{ steps.prep.outputs.VERSION }}
6464
- name: Verifiy image signature
6565
run: |
66-
cosign verify -key ./cosign/cosign.pub \
66+
cosign verify -key ./.cosign/cosign.pub \
6767
ghcr.io/fluxcd/flagger:${{ steps.prep.outputs.VERSION }}
6868
- name: Publish Helm charts
6969
uses: stefanprodan/[email protected]

CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ For more details see the [OSM Progressive Delivery tutorial](https://docs.flagge
1111

1212
Starting with this version, Flagger container images are signed with
1313
[sigstore/cosign](https://github.com/sigstore/cosign), for more details see the
14-
[Flagger cosign docs](https://github.com/fluxcd/flagger/blob/main/cosign/README.md).
14+
[Flagger cosign docs](https://github.com/fluxcd/flagger/blob/main/.cosign/README.md).
1515

1616
#### Features
1717

0 commit comments

Comments
 (0)