Skip to content

Commit

Permalink
ci: fix release workflow
Browse files Browse the repository at this point in the history
During the release workflow, connaisseur tried to validate itself with cosign, for which no signature existed. Fixing this.
  • Loading branch information
phbelitz committed Jun 3, 2023
1 parent 37252b1 commit c475dd1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/integration/integration-test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ cp helm/values.yaml values.yaml.Backup
COSIGN_PUBLIC_KEY="$(printf -- "${COSIGN_PUBLIC_KEY//<br>/\\n }")"

## Join ghcr integration yaml
if [[ -n "${IMAGE+x}" && -n "${IMAGEPULLSECRET+x}" ]]; then
if [[ -n "${IMAGE+x}" && -n "${IMAGEPULLSECRET+x}" && "${GITHUB_WORKFLOW}" != "release" ]]; then
yq '. *+ load("tests/integration/var-img.yaml")' tests/integration/ghcr-values.yaml >ghcr-tmp
envsubst <ghcr-tmp >ghcr-values
envsubst <tests/integration/ghcr-values.yaml >ghcr-validator
Expand Down

0 comments on commit c475dd1

Please sign in to comment.