-
Notifications
You must be signed in to change notification settings - Fork 3
fix(ci): restore binary releases + add musl Linux targets #75
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Meru143
merged 9 commits into
Meru143:main
from
safe-ai-factory:fix-binary-releases-add-musl
May 4, 2026
+61
−10
Merged
Changes from all commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
7d4c210
fix(ci): use GH_PAT for release-plz release step so tag pushes trigge…
JuroOravec f4e014e
fix(ci): trigger Release on argus-core-v* tag (consistent with releas…
JuroOravec 4562b5a
feat(ci): add musl Linux build targets
JuroOravec 12b97a1
fix(lint): satisfy clippy 1.95 unnecessary_sort_by
JuroOravec 66fc962
fix(gitpulse): stable author ordering by tie-breaking on email
JuroOravec 07ef015
fix(ci): keep release trigger on argus-ai-v* and pin cross
JuroOravec d36f074
docs(ci): tighten GH_PAT scope guidance to least-privilege
JuroOravec bed138b
style: cargo fmt the multi-key sort_by in ownership.rs
JuroOravec a056003
fix(lint): satisfy clippy 1.95 unnecessary_sort_by in patch.rs
JuroOravec File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -28,17 +28,32 @@ jobs: | |
| with: | ||
| command: release | ||
| env: | ||
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
| # GH_PAT lets release-plz's bot tag pushes trigger downstream | ||
| # workflows like `Release` (release.yml). With plain GITHUB_TOKEN, | ||
| # GitHub Actions' anti-recursion rule silently suppresses workflow | ||
| # runs from bot-pushed tags | ||
| # (https://docs.github.com/en/actions/using-workflows/triggering-a-workflow#triggering-a-workflow-from-a-workflow), | ||
| # which is why binary releases stopped attaching after v0.2.2. | ||
| # | ||
| # Recommended: a fine-grained PAT scoped to this repo with | ||
| # `Contents: Read & write` (and `Pull requests: Read & write` if | ||
| # you also want this token to drive the release-pr step). A | ||
| # GitHub App token with the same permissions is even better — | ||
| # tokens are short-lived and scoped to the installation. | ||
| # Avoid classic PATs with the broad `workflow` scope unless | ||
| # actually needed; tag pushes alone don't require it. | ||
| # Falls back to GITHUB_TOKEN if GH_PAT isn't configured (no break for forks). | ||
| GITHUB_TOKEN: ${{ secrets.GH_PAT || secrets.GITHUB_TOKEN }} | ||
| CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }} | ||
|
|
||
| # Create PR for next release if changes exist | ||
| - name: Create Release PR | ||
| uses: release-plz/[email protected] | ||
| if: steps.release-plz.outputs.releases == '[]' || steps.release-plz.outputs.releases == '' | ||
| if: steps.release-plz.outputs.releases == '[]' || steps.release-plz.outputs.releases == '' | ||
| with: | ||
| command: release-pr | ||
| env: | ||
| # Use GH_PAT if set to trigger CI workflows, otherwise fallback to GITHUB_TOKEN | ||
| # Same token requirements as above — see comment on the release step. | ||
| GITHUB_TOKEN: ${{ secrets.GH_PAT || secrets.GITHUB_TOKEN }} | ||
| CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }} | ||
|
|
||
|
|
||
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
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
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
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.