fix(ci): guard release-official against branch-name dispatch (v7.0.3)#7
Merged
fix(ci): guard release-official against branch-name dispatch (v7.0.3)#7
Conversation
Resolve the release tag explicitly from inputs.tag → refs/tags/v* → src-tauri/tauri.conf.json#version. Drop the github.ref_name fallback which on a workflow_dispatch from main resolved to 'main' and produced a 'vmain' release (2026-05-10). Add a fail-fast guard step that validates the resolved tag is strict semver BEFORE the shared begin-release action creates the draft. Co-Authored-By: Claude Opus 4 (1M context) <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.
Summary
version: ${{ inputs.tag || github.ref_name }}with a tag-only fallbackWhy
This is the repo where the latent bug actually shipped — three v7.0.x dispatches rolled into a single
vmainrelease. The new expression + guard make it impossible to ship a non-semver tag.Test plan
vmainrelease is deleted as part of the cleanup🤖 Generated with Claude Code