Skip to content

Commit a30495c

Browse files
authored
fix: outputs population in the releaser workflow (#131)
* Update releaser.yml * Update releaser.yml * Update releaser.yml * Update releaser.yml * Update CHANGELOG.md
1 parent c970491 commit a30495c

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

.github/workflows/releaser.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -192,11 +192,11 @@ jobs:
192192
- uses: actions/download-artifact@v5
193193
- id: aggregate
194194
run: |
195+
shopt -s globstar
195196
echo "json<<EOF" >> $GITHUB_OUTPUT
196197
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
200200
echo "$comma" | tee -a $GITHUB_OUTPUT
201201
jq .source "$f" | tee -a $GITHUB_OUTPUT
202202
echo ":" | tee -a $GITHUB_OUTPUT

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## Unreleased
88

9+
## [1.0.33] - 2025-09-04
10+
### Fixed
11+
- fixed outputs population in the `releaser` workflow
12+
913
## [1.0.32] - 2025-08-20
1014
### Changed
1115
- do not recurse submodules when fetching the base SHA in the `go-check` workflow

0 commit comments

Comments
 (0)