Skip to content

Commit 77be869

Browse files
DaveBuggclaude
andcommitted
ci: checkout repo in the bundle job so release notes can read CHANGELOG
The Combine-artifacts job only downloaded build artifacts — it never checked out the source, so the release-notes step's `awk … CHANGELOG.md` failed with exit 2 (no such file). Add actions/checkout at the tagged ref. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
1 parent 636c68f commit 77be869

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

.github/workflows/release.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -213,6 +213,9 @@ jobs:
213213
needs: [frontend, backend, naive]
214214
runs-on: ubuntu-latest
215215
steps:
216+
# Needed so the release-notes step can read CHANGELOG.md at this tag.
217+
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
218+
216219
- uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1
217220
with:
218221
# Restrict to our own artifacts. `build-push-action` also

0 commit comments

Comments
 (0)