Skip to content

Commit 6b3ce00

Browse files
JAORMXclaude
andcommitted
Fix release workflow missing checkout step
The create-release job needs a git repo for gh release create --generate-notes to work. Add actions/checkout before downloading artifacts. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent d48e666 commit 6b3ce00

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

.github/workflows/release.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,9 @@ jobs:
6565
runs-on: ubuntu-latest
6666
needs: build-artifacts
6767
steps:
68+
- name: Checkout repository
69+
uses: actions/checkout@v6
70+
6871
- name: Download all artifacts
6972
uses: actions/download-artifact@v7
7073
with:

0 commit comments

Comments
 (0)