Skip to content

Enable public releases from versioned release branches#11

Merged
masarray merged 1 commit into
mainfrom
agent/public-release-v0.3.0
Jul 11, 2026
Merged

Enable public releases from versioned release branches#11
masarray merged 1 commit into
mainfrom
agent/public-release-v0.3.0

Conversation

@masarray

Copy link
Copy Markdown
Owner

Purpose

Enable an authenticated release request through a release/vX.Y.Z branch. This is useful when a tag cannot be created directly from the current integration while preserving the same validated release pipeline.

Behavior

  • release/v0.3.0 resolves to version 0.3.0 and tag v0.3.0.
  • The workflow rebuilds and tests Publisher and Subscriber.
  • It publishes portable single-file EXEs and the portable ZIP.
  • It compiles and smoke-tests the Inno Setup installer.
  • It generates SHA-256 checksums.
  • Only after validation succeeds, it creates the tag and public GitHub Release.
  • Existing direct tag releases and manual artifact builds continue to work.

After this PR is merged, a release/v0.3.0 branch will be created from main to publish the first hardened public release.

@chatgpt-codex-connector chatgpt-codex-connector Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

💡 Codex Review

Here are some automated review suggestions for this pull request.

Reviewed commit: 7877f11863

ℹ️ About Codex in GitHub

Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you

  • Open a pull request for review
  • Mark a draft as ready
  • Comment "@codex review".

If Codex has suggestions, it will comment; otherwise it will react with 👍.

Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".

release:
name: Publish GitHub Release
if: github.ref_type == 'tag'
if: github.ref_type == 'tag' || startsWith(github.ref, 'refs/heads/release/v')

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P2 Badge Keep manual dispatches artifact-only

When a workflow_dispatch run is started from a release/vX.Y.Z branch, github.ref is still refs/heads/release/vX.Y.Z, so this condition is true even though the event is manual. That turns a manual artifact build from such a branch into a public GitHub Release, and the version step above also resolves the branch name before honoring inputs.version; require the release-branch path to be a push event so manual runs remain artifact-only.

Useful? React with 👍 / 👎.

@masarray
masarray merged commit 9dc6c8b into main Jul 11, 2026
5 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant