Fix release workflow: build and upload in single workflow#34
Merged
erikdarlingdata merged 1 commit intodevfrom Mar 5, 2026
Merged
Fix release workflow: build and upload in single workflow#34erikdarlingdata merged 1 commit intodevfrom
erikdarlingdata merged 1 commit intodevfrom
Conversation
GITHUB_TOKEN events don't trigger other workflows, so the two-workflow chain (release creates tag → build uploads zips) never worked. Now the release workflow handles everything: create release, build, publish, zip, upload. CI workflow stays as just build+test for PRs/pushes. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Problem
GITHUB_TOKEN events don't trigger other workflows. The release workflow created the tag, but the build workflow's
on: releaseevent never fired — so zips were never attached.Fix
Merged both into a single release workflow: create release → build → publish → zip → upload. CI workflow is now just build+test for PRs/pushes.
Test
v0.8.1 release exists but has no zips. After this fix, the next dev→main merge will work end-to-end.
🤖 Generated with Claude Code