Skip to content

Commit

Permalink
fix: update releaser too
Browse files Browse the repository at this point in the history
  • Loading branch information
galargh committed Sep 17, 2024
1 parent 8e2ca0c commit b281232
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/releaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -185,14 +185,16 @@ jobs:
- id: aggregate
run: |
echo "json<<EOF" >> $GITHUB_OUTPUT
echo "[" | tee -a $GITHUB_OUTPUT
echo "{" | tee -a $GITHUB_OUTPUT
for d in *; do
f="$d/release.json"
if [[ -d "$d" && -f "$f" ]]; then
echo "$comma" | tee -a $GITHUB_OUTPUT
jq .source "$f" | tee -a $GITHUB_OUTPUT
echo ":" | tee -a $GITHUB_OUTPUT
jq . "$f" | tee -a $GITHUB_OUTPUT
comma=","
fi
done
echo "]" | tee -a $GITHUB_OUTPUT
echo "}" | tee -a $GITHUB_OUTPUT
echo "EOF" >> $GITHUB_OUTPUT

0 comments on commit b281232

Please sign in to comment.