Add tag-driven release process (midge pattern) - #5
Merged
Merged
Conversation
src/version.h is now the single source of truth for the version and the $VER build string (DEVSOAK_VERSTAG), replacing the hand-edited literal in main.c. scripts/verify-version.sh gates a release tag against src/version.h and devsoak.readme (including a date-bump check) before .github/workflows/release.yml hands off to sidick/amiga-workflows' aminet-release.yml for the GitHub Release + gated Aminet (dev/misc) publish. Makefile gains a `dist` target that rebuilds the binary, greps it for the exact $VER string to catch a stale build, and packages devsoak/devsoak.quirks/README.md/LICENSE into dist/devsoak.lha via a pinned lha built from source (same rationale as midge: distro lha packages are extract-only or don't compile). Also adds the missing LICENSE (BSD 2-Clause, matching devsoak.readme's existing licence claim) and a Releases section in README.md. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01EbDNgMg5EyWbEBRUvAoqP4
sidick
enabled auto-merge (squash)
September 2, 2026 13:11
sidick
disabled auto-merge
September 2, 2026 13:15
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.
Summary
disttarget: rebuilds the binary, greps it for the exact $VER string, packages devsoak/devsoak.quirks/README.md/LICENSE into dist/devsoak.lhaTest plan
make allbuilds clean via docker (stefanreinauer/amiga-gcc)strings devsoak | grep '$VER'shows the correct embedded version stringm68k-amigaos-nm devsoak | grep -i utilityempty (KS1.3 guard still holds)scripts/verify-version.sh v0.1passes; a mismatched tag fails correctlymake dist(Lhasa override) confirms binary rebuild + $VER grep + file staging all work; reallhabuild/create verified against midge's identical recipe🤖 Generated with Claude Code
https://claude.ai/code/session_01EbDNgMg5EyWbEBRUvAoqP4