Skip to content

Commit

Permalink
fixed cosign steps workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
yvoswillens committed Oct 9, 2024
1 parent 396400a commit 849fba4
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/docker-release-with-latest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,4 +51,5 @@ jobs:
cosign sign --key cosign.key \
-a "repo=${{ github.repository }}" \
-a "ref=${{ github.sha }}" \
flowable/flowable-rest:latest
flowable/flowable-rest:latest \
-y
9 changes: 4 additions & 5 deletions .github/workflows/docker-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,8 @@ jobs:
-D docker.publisher.user=${{ secrets.DOCKER_USER }} \
-D docker.publisher.password=${{ secrets.DOCKER_PASSWORD }}
- name: Install cosign
uses: sigstore/cosign-installer@d6a3abf1bdea83574e28d40543793018b6035605
with:
cosign-release: 'v1.7.1'
- name: Install Cosign
uses: sigstore/[email protected]

- name: Write signing key to disk
run: echo "${{ secrets.SIGNING_SECRET }}" > cosign.key
Expand All @@ -49,4 +47,5 @@ jobs:
cosign sign --key cosign.key \
-a "repo=${{ github.repository }}" \
-a "ref=${{ github.sha }}" \
flowable/flowable-rest:${{ steps.meta.outputs.version }}
flowable/flowable-rest:${{ steps.meta.outputs.version }} \
-y

0 comments on commit 849fba4

Please sign in to comment.