Skip to content

Commit

Permalink
Install jq before releasing. (#848)
Browse files Browse the repository at this point in the history
- `jq` is now needed to run the script `modify_spec.sh`
- Since the release runs from the `docker.io/library/golang:1.22` image, it doesn't have jq installed
- as a workaround, the release script now installs jq first
  • Loading branch information
gigerdo authored Aug 28, 2024
1 parent 05b5235 commit 7201117
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .buildkite/release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,9 @@ echo -n "$GPG_PRIVATE_SECRET" | base64 --decode | gpg --import --batch --yes --p
echo "--- Caching GPG passphrase"
echo "$GPG_PASSPHRASE_SECRET" | gpg --armor --detach-sign --passphrase-fd 0 --pinentry-mode loopback

echo "--- Installing jq"
apt-get update
apt-get install jq -y

echo "--- Release the binaries"
make release

0 comments on commit 7201117

Please sign in to comment.