Skip to content

Commit c1d67ee

Browse files
committed
fix(ci): update cosign command for v4 bundle format
1 parent afae9b2 commit c1d67ee

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

.github/workflows/release-please.yaml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -74,13 +74,11 @@ jobs:
7474
- name: Sign JARs with Cosign
7575
run: |
7676
cosign sign-blob --yes ${{ steps.jar-filepath-step.outputs.jar-filepath }} \
77-
--output-signature ${{ steps.jar-filepath-step.outputs.jar-filepath }}.sig \
78-
--output-certificate ${{ steps.jar-filepath-step.outputs.jar-filepath }}.cert
77+
--bundle ${{ steps.jar-filepath-step.outputs.jar-filepath }}.bundle
7978
8079
- name: Upload file to release
8180
run: |
8281
gh release upload ${{ needs.release-please.outputs.tag_name }} ${{ steps.jar-filepath-step.outputs.jar-filepath }}
83-
gh release upload ${{ needs.release-please.outputs.tag_name }} ${{ steps.jar-filepath-step.outputs.jar-filepath }}.sig
84-
gh release upload ${{ needs.release-please.outputs.tag_name }} ${{ steps.jar-filepath-step.outputs.jar-filepath }}.cert
82+
gh release upload ${{ needs.release-please.outputs.tag_name }} ${{ steps.jar-filepath-step.outputs.jar-filepath }}.bundle
8583
env:
8684
GH_TOKEN: ${{ github.TOKEN }}

0 commit comments

Comments
 (0)