Skip to content

Commit

Permalink
Merge pull request #87 from flatcar/tormath1/release
Browse files Browse the repository at this point in the history
release: do not fail if there is no release artifact
  • Loading branch information
tormath1 authored Sep 3, 2024
2 parents d2700fe + 5b7b4fb commit bcc3989
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion release_build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ echo "=========================================="
curl -fsSL --retry-delay 1 --retry 60 --retry-connrefused \
--retry-max-time 60 --connect-timeout 20 \
https://api.github.com/repos/flatcar/sysext-bakery/releases/latest \
| jq -r '.assets[] | "\(.name)\t\(.browser_download_url)"' | grep -E '\.raw$' | tee prev_release_sysexts.txt
| jq -r '.assets[] | "\(.name)\t\(.browser_download_url)"' | { grep -E '\.raw$' || true; } | tee prev_release_sysexts.txt

while IFS=$'\t' read -r name url; do
echo
Expand Down

0 comments on commit bcc3989

Please sign in to comment.