Open
Conversation
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #1278 +/- ##
=======================================
Coverage 89.78% 89.78%
=======================================
Files 57 57
Lines 8204 8204
Branches 8204 8204
=======================================
Hits 7366 7366
Misses 542 542
Partials 296 296 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
Contributor
There was a problem hiding this comment.
Pull request overview
Updates the GitHub Actions release workflow so published release artifacts include the release version/tag in their filenames, making it easier to distinguish downloaded artifacts across versions.
Changes:
- Append
${{ github.ref_name }}to archived release artifact filenames. - Update the
softprops/action-gh-releaseupload configuration to match the new filenames.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| run: | | ||
| cd muse2 | ||
| ${{ matrix.archive_cmd }} ../muse2_${{ matrix.osname }}.${{ matrix.archive_ext }} * | ||
| ${{ matrix.archive_cmd }} ../muse2_${{ matrix.osname }}_${{ github.ref_name }}.${{ matrix.archive_ext }} * |
Member
Author
There was a problem hiding this comment.
Ohh I totally didn't notice this! Looks like our .tar.gz files aren't actually compressed. I'll fix this for previous releases when I rename the files.
tsmbland
approved these changes
May 8, 2026
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
We currently call the release artifacts something like
muse2_linux.tar.gz-- so we include the OS name, but not the version number. It's helpful to have the version number in there so you can see which version you have if you stumble across the file or want to download multiple different versions. This is common practice.Update the release workflow accordingly. I'll also open a PR for the
muse2_data_analysisrepo as we'll need to update this CI action too (opened in draft here: EnergySystemsModellingLab/muse2_data_analysis#64).Once this is merged I'll rename the files for the existing releases for consistency.
Closes #1232.
Type of change
Key checklist
$ cargo test$ cargo docpresent in the previous release
Further checks