Skip to content

Commit 18e02ed

Browse files
authored
Fix cosign configuration with cosign 3 (installer 4) and Harbor (#184)
See goharbor/harbor#22401
1 parent 281075a commit 18e02ed

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/release-workflow.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,14 +86,14 @@ jobs:
8686
8787
- name: Sign helm chart (CRDs) at registry.cloud.qdrant.io
8888
run: |
89-
cosign sign --yes "${TAGS}@${DIGEST}"
89+
cosign sign --new-bundle-format=false --use-signing-config=false --yes "${TAGS}@${DIGEST}"
9090
env:
9191
TAGS: registry.cloud.qdrant.io/qdrant-charts/qdrant-kubernetes-api:${{ steps.extract_build_info.outputs.tag }}
9292
DIGEST: ${{ steps.push-helm-chart-crds.outputs.digest }}
9393

9494
- name: Sign helm chart (CRDs) at registry.cloud.qdrant.io in public repo
9595
run: |
96-
cosign sign --yes "${TAGS}@${DIGEST}"
96+
cosign sign --new-bundle-format=false --use-signing-config=false --yes "${TAGS}@${DIGEST}"
9797
env:
9898
TAGS: registry.cloud.qdrant.io/library/qdrant-kubernetes-api:${{ steps.extract_build_info.outputs.tag }}
9999
DIGEST: ${{ steps.push-helm-chart-crds-public.outputs.public_digest }}

0 commit comments

Comments
 (0)