[WIP] Fix artifact building for Windows release#8
Merged
NolanCotter merged 2 commits intomainfrom Feb 27, 2026
Merged
Conversation
The "Publish release assets" step was skipped on push-to-main because the if condition only matched tag pushes and workflow_dispatch events. Changes: - Add push-to-main to the release step condition - Fix tag_name to generate dev tag instead of using branch name 'main' - Simplify prerelease to mark all non-tag releases as pre-releases - Simplify name to label all non-tag releases with build number Co-authored-by: ayobro1 <186326284+ayobro1@users.noreply.github.com>
Copilot stopped work on behalf of
NolanCotter due to an error
February 27, 2026 18:18
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.
ifcondition only matches tag pushes andworkflow_dispatchevents (confirmed by run #19 job logs showing step 11 as "skipped")ifcondition to also trigger on push tomaintag_nameexpression to generate a proper dev tag (v0.0.0-dev-{run_number}) for push-to-main events (previously would evaluate to branch namemain, not a valid release tag)prereleaseandnameexpressions for push-to-main scenario🔒 GitHub Advanced Security automatically protects Copilot coding agent pull requests. You can protect all pull requests by enabling Advanced Security for your repositories. Learn more about Advanced Security.