Skip to content

Commit

Permalink
fix(ci): pass correct version to ci script
Browse files Browse the repository at this point in the history
  • Loading branch information
arcln committed Jun 2, 2022
1 parent 28334fb commit 1edcf63
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -156,8 +156,8 @@ chart:
- >
echo '{}'
| jq '.event_type = "x509 Certificate Exporter Automatic Release"'
| jq --arg ref "$(cat CHANGELOG.md)" '.client_payload.ref = $ARGS.named["ref"]'
| jq --arg notes "$NOTES" '.client_payload.notes = $ARGS.named["notes"]'
| jq --arg ref "${CI_COMMIT_REF_NAME:1}" '.client_payload.ref = $ARGS.named["ref"]'
| jq --arg notes "$(cat CHANGELOG.md)" '.client_payload.notes = $ARGS.named["notes"]'
| jq ".client_payload.contains_security_updates = \"${CONTAINS_SECURITY_UPDATES:-false}\""
> body.json
- >
Expand Down

0 comments on commit 1edcf63

Please sign in to comment.