Add automatic GitHub Release creation with multi-platform builds for semantic version tags#2
Draft
Add automatic GitHub Release creation with multi-platform builds for semantic version tags#2
Conversation
Co-authored-by: phoenixofhp <64036649+phoenixofhp@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Add release creation on new Semver tags
Add automatic GitHub Release creation for semantic version tags
Oct 12, 2025
Owner
|
@copilot |
…d macOS Co-authored-by: phoenixofhp <64036649+phoenixofhp@users.noreply.github.com>
Contributor
Author
Added build steps with CMake for all three platforms in commit 9afe716. The workflow now:
|
Copilot
AI
changed the title
Add automatic GitHub Release creation for semantic version tags
Add automatic GitHub Release creation with multi-platform builds for semantic version tags
Oct 12, 2025
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.
Overview
This PR implements automatic GitHub Release creation whenever a new semantic version tag (format
x.y.z) is pushed to the repository. The workflow builds the project on multiple platforms and attaches the binaries to the release.Changes
Added a new GitHub Actions workflow (
.github/workflows/release.yml) that:1.0.0,2.3.4)Usage
To create a new release, simply push a semantic version tag:
The workflow will automatically:
Technical Details
softprops/action-gh-release@v1actionactions/upload-artifact@v4andactions/download-artifact@v4for artifact management[0-9]+.[0-9]+.[0-9]+matches semantic versionsyamllintto ensure proper formattingcontents: writepermission for release creationThis resolves the issue: "Я хочу чтобы при добавлении каждого нового тега в формате Semver(x.y.z) делался Release" (I want a Release to be created when adding each new tag in Semver format)
Original prompt
💡 You can make Copilot smarter by setting up custom instructions, customizing its development environment and configuring Model Context Protocol (MCP) servers. Learn more Copilot coding agent tips in the docs.