File tree Expand file tree Collapse file tree 2 files changed +8
-4
lines changed Expand file tree Collapse file tree 2 files changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -345,11 +345,11 @@ jobs:
345
345
- uses : actions/download-artifact@v5
346
346
- id : aggregate
347
347
run : |
348
+ shopt -s globstar
348
349
echo "json<<EOF" >> $GITHUB_OUTPUT
349
350
echo "{" | tee -a $GITHUB_OUTPUT
350
- for d in *; do
351
- f="$d/release.json"
352
- if [[ -d "$d" && -f "$f" ]]; then
351
+ for f in **/release.json; do
352
+ if [[ -f "$f" ]]; then
353
353
echo "$comma" | tee -a $GITHUB_OUTPUT
354
354
jq .source "$f" | tee -a $GITHUB_OUTPUT
355
355
echo ":" | tee -a $GITHUB_OUTPUT
Original file line number Diff line number Diff line change @@ -6,9 +6,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
6
6
7
7
## Unreleased
8
8
9
+ ## [ 1.0.34] - 2025-09-16
10
+ ### Fixed
11
+ - fixed outputs population in the ` release-checker ` workflow
12
+
9
13
## [ 1.0.33] - 2025-09-04
10
14
### Fixed
11
- - fixed outputs population in the ` releaser ` workflow
15
+ - fixed outputs population in the ` releaser ` workflow
12
16
13
17
## [ 1.0.32] - 2025-08-20
14
18
### Changed
You can’t perform that action at this time.
0 commit comments