Add release workflow - #5
Open
sermuns wants to merge 2 commits into
Open
Conversation
dead10ck
approved these changes
Sep 15, 2025
dead10ck
left a comment
Owner
There was a problem hiding this comment.
Thanks for doing this; this mostly looks good to me. I'll test it out and merge when I get some time
Comment on lines
+60
to
+66
| - name: Build | Build | ||
| if: ${{ !endsWith(matrix.target, '-unknown-linux-musl') }} | ||
| run: cargo build --release --target ${{ matrix.target }} | ||
| - name: Build | Build (musl) | ||
| if: endsWith(matrix.target, '-unknown-linux-musl') | ||
| run: cross build --release --target ${{ matrix.target }} |
Owner
There was a problem hiding this comment.
It looks like the only difference between these is the name? Not a big deal, just curious if I'm missing something.
Uh oh!
There was an error while loading. Please reload this page.
sermuns
commented
Nov 4, 2025
Author
Any changes that need to be made? |
sermunsforce-pushed
the
master
branch
2 times, most recently
from
June 14, 2026 14:26
dcbe766 to
0a6f83bComparesermuns
commented
Jun 14, 2026
Author
Sorry, was messing around modernizing the project, but that doesn't belong in this PR. I reset the changes to my original proposal! |
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 freeto 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.
This adds a GitHub action workflow that compiles the program for MacOS, Windows and various architectures of Linux.
I did a little tinkering with the git history to make the commits make the most sense, by adding the workflow before version 1.0.1. Let me know if this is stupid.
I also replaced
=with#inCHANGELOG.md, let me know if there was a reason for this otherwise.