fix: run rpm build regardless of release
Check and Lint / Rustfmt (pull_request) Successful in 16s
Check and Lint / Check (pull_request) Successful in 19s
Check and Lint / Clippy (pull_request) Successful in 19s
Check and Lint / Build RPM (pull_request) Successful in 23s
Test and Coverage / Test (pull_request) Successful in 19s
Test and Coverage / Coverage (pull_request) Successful in 42s
Check and Lint / Check (push) Successful in 18s
Check and Lint / Rustfmt (push) Successful in 19s
Check and Lint / Clippy (push) Successful in 18s
Check and Lint / Build RPM (push) Successful in 21s
Test and Coverage / Test (push) Successful in 21s
Release / Semantic release (push) Successful in 46s
Test and Coverage / Coverage (push) Successful in 46s
Release / Build and push RPM (push) Successful in 26s

This commit was merged in pull request #14.
This commit is contained in:
2026-07-30 12:47:34 +02:00
parent 31acc9f3f1
commit 823b94d5e2
+2 -2
View File
@@ -18,7 +18,7 @@ jobs:
runs-on: ubuntu-latest
outputs:
# "true" only when semantic-release actually published a release.
released: ${{ steps.semantic_release.outputs.released }}
released: ${{ steps.semantic_release.outputs.released }} # set in .releaserc.json
steps:
# Check out with the bot token so semantic-release can push the version
# bump and tag past branch protection (the default token cannot).
@@ -50,7 +50,7 @@ jobs:
name: Build and push RPM
runs-on: ubuntu-latest
needs: release
if: needs.release.outputs.released == 'true'
# if: needs.release.outputs.released == 'true'
steps:
- uses: actions/checkout@v6
- uses: https://github.com/dtolnay/rust-toolchain@stable