Skip to content

Commit 37e82b3

Browse files
committed
fix: outputs population in the release-checker workflow
1 parent a30495c commit 37e82b3

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

.github/workflows/release-check.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -345,11 +345,11 @@ jobs:
345345
- uses: actions/download-artifact@v5
346346
- id: aggregate
347347
run: |
348+
shopt -s globstar
348349
echo "json<<EOF" >> $GITHUB_OUTPUT
349350
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
353353
echo "$comma" | tee -a $GITHUB_OUTPUT
354354
jq .source "$f" | tee -a $GITHUB_OUTPUT
355355
echo ":" | tee -a $GITHUB_OUTPUT

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## Unreleased
88

9+
## [1.0.34] - 2025-09-16
10+
### Fixed
11+
- fixed outputs population in the `release-checker` workflow
12+
913
## [1.0.33] - 2025-09-04
1014
### Fixed
11-
- fixed outputs population in the `releaser` workflow
15+
- fixed outputs population in the `releaser` workflow
1216

1317
## [1.0.32] - 2025-08-20
1418
### Changed

0 commit comments

Comments
 (0)