Skip to content

Commit 58c824a

Browse files
timvwclaude
andcommitted
fix: upload checksums.txt as artifact for formula updates
The update-formula job needs checksums.txt as an artifact to extract bottle SHA256s. Previously, checksums.txt was only uploaded to the GitHub release, causing the formula to be updated with empty SHA256s. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent 591fca5 commit 58c824a

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

.github/workflows/release.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -166,6 +166,13 @@ jobs:
166166
shasum -a 256 * > checksums.txt
167167
cat checksums.txt
168168
169+
- name: Upload checksums artifact
170+
uses: actions/upload-artifact@v4
171+
with:
172+
name: checksums
173+
path: release/checksums.txt
174+
if-no-files-found: error
175+
169176
- name: Create GitHub Release
170177
env:
171178
GH_TOKEN: ${{ steps.generate-token.outputs.token }}

0 commit comments

Comments
 (0)