Improve production release - manual deploy & display tag#951
Open
Improve production release - manual deploy & display tag#951
Conversation
yuliadub
reviewed
Feb 18, 2026
| branches: | ||
| - 'release' | ||
| tags: | ||
| - 'v*' |
Contributor
There was a problem hiding this comment.
would it make sense to make it something avyweb-v?
Collaborator
Author
There was a problem hiding this comment.
Tags are already scoped to the repo, so there's no risk of collision with other projects. v* is the standard semver convention (e.g., used by GitHub's own "Generate release notes" feature and most actions like actions/checkout@v4).
yuliadub
reviewed
Feb 18, 2026
|
Preview deployment: https://prod-release-tag.preview.avy-fx.org |
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.
Description
Update the production GHA workflow to trigger on version tag pushes (
v*) instead of branch pushes, so workflow runs display as "Deploy v1.8.0" instead of "Merge pull request #943...".Related Issues
Just from chatting with @busbyk
Key Changes
on: push: branches: ['release']toon: push: tags: ['v*']— deploys now trigger from the tag push in the existing release processrun-name: 'Deploy ${{ github.ref_name }}'for clear version labeling in the Actions UIreleasebranch, catching cases where someone pushes a tag without pushing the branchgithub.event.pusher.nameis empty onworkflow_dispatch— added|| github.actorfallback to prevent Vercel meta validation errorbranch="release"since the deploy meta already hardcodesgithubCommitRef=releaseand deriving it fromgithub.event.refbreaks with tag triggersHow to test
git tag -s v1.8.1-test -m 'v1.8.1-test' && git push origin --tags && git push originworkflow_dispatchand verify it no longer fails on the author meta