Also publish the DMG when a Release is published from the UI - #13
Merged
Conversation
Add a `release: published` trigger to release-macos-dmg.yml so a Release created in the GitHub UI (which creates the tag but does not fire `push: tags`) still builds the app and attaches LaughCounter.dmg. The tag-push path is unchanged and won't double-build (its Release is created with GITHUB_TOKEN, which doesn't re-fire the `release` event). Refs #11 Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01ATTAHuLKSR8K7ZFawgbncJ
missingbulb
added a commit
that referenced
this pull request
Jul 14, 2026
The two release-automation gotchas learned wiring release-macos-dmg.yml were only recorded in commit messages (#13, #19) and the workflow YAML comments, so a future session touching the release flow wouldn't be pointed at them. Re-home them into a local instruction doc reachable from CLAUDE.md: - A Claude Code web session's git proxy can't push v* tags, so a tag-triggered release never fires from a session — trigger on push-to-main instead (#18/#19). - A UI-published Release doesn't emit push: tags — add release: published so a hand-published Release still builds/attaches the DMG (#11/#13). Creates the dev/procedures/ instruction-doc scaffold (none existed) and imports it from the root CLAUDE.md. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_018DKJNecs661QFXT5YZEeTn
This was referenced Jul 14, 2026
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.
Adds a
release: publishedtrigger torelease-macos-dmg.ymlso you can cut a release from the GitHub UI (handy on mobile) — creating the tagv0.2.0there — and still have the workflow build the app and attachLaughCounter.dmg. The GitHub UI creates the tag but doesn't firepush: tags, which is why this trigger is needed.The existing tag-push path is unchanged and won't double-build: a tag pushed via git has its Release created with
GITHUB_TOKEN, which by design doesn't re-fire thereleaseevent.Refs #11
🤖 Generated with Claude Code
Generated by Claude Code