Skip to content

Commit 998ca82

Browse files
MajorTalclaude
andcommitted
fix(publish): pin action-gh-release to @v2 to bypass v3 CDN miss
GitHub Actions runners are persistently 404'ing on softprops/action-gh-release@v3 even though the SHA resolves correctly via api.github.com and codeload responds 200 from outside the runner edge. Pin to @v2.6.2 (released same day as v3.0.0, identical API for our usage: tag_name, name, generate_release_notes, target_commitish). The Trusted Publisher OIDC trust is keyed on filename + repo + branch, not file contents — this change is safe. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
1 parent 8346c9c commit 998ca82

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ jobs:
222222
223223
- name: Create GitHub release
224224
if: ${{ !inputs.dry_run }}
225-
uses: softprops/action-gh-release@v3
225+
uses: softprops/action-gh-release@v2
226226
with:
227227
tag_name: v${{ steps.bump.outputs.new }}
228228
name: 'v${{ steps.bump.outputs.new }}'

0 commit comments

Comments
 (0)