File tree Expand file tree Collapse file tree 2 files changed +7
-3
lines changed Expand file tree Collapse file tree 2 files changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -192,11 +192,11 @@ jobs:
192
192
- uses : actions/download-artifact@v5
193
193
- id : aggregate
194
194
run : |
195
+ shopt -s globstar
195
196
echo "json<<EOF" >> $GITHUB_OUTPUT
196
197
echo "{" | tee -a $GITHUB_OUTPUT
197
- for d in *; do
198
- f="$d/release.json"
199
- if [[ -d "$d" && -f "$f" ]]; then
198
+ for f in **/release.json; do
199
+ if [[ -f "$f" ]]; then
200
200
echo "$comma" | tee -a $GITHUB_OUTPUT
201
201
jq .source "$f" | tee -a $GITHUB_OUTPUT
202
202
echo ":" | tee -a $GITHUB_OUTPUT
Original file line number Diff line number Diff line change @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
6
6
7
7
## Unreleased
8
8
9
+ ## [ 1.0.33] - 2025-09-04
10
+ ### Fixed
11
+ - fixed outputs population in the ` releaser ` workflow
12
+
9
13
## [ 1.0.32] - 2025-08-20
10
14
### Changed
11
15
- do not recurse submodules when fetching the base SHA in the ` go-check ` workflow
You can’t perform that action at this time.
0 commit comments