Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions .github/workflows/release-plz.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,11 @@ jobs:
with:
fetch-depth: 0
- uses: dtolnay/rust-toolchain@29eef336d9b2848a0b548edc03f92a220660cdb8 # stable
# `cargo publish` verifies by building the packaged tarball, and that build
# links libfuse through `fuser` exactly as the CI build jobs do. ci.yml has
# installed these since the fuser dependency landed; the publish path never
# got the same step, so releases died in verification rather than in CI.
- run: sudo apt-get update && sudo apt-get install -y libfuse3-dev pkg-config
- name: release-plz release
uses: release-plz/action@e8792575c7f2366cf6ff3ccc33ead9ace5b691c7 # v0.5.130
with:
Expand All @@ -52,6 +57,9 @@ jobs:
with:
fetch-depth: 0
- uses: dtolnay/rust-toolchain@29eef336d9b2848a0b548edc03f92a220660cdb8 # stable
# release-pr runs `cargo package` while searching history for the last
# published content, so it needs the same libfuse toolchain as release.
- run: sudo apt-get update && sudo apt-get install -y libfuse3-dev pkg-config
- name: release-plz release-pr
uses: release-plz/action@e8792575c7f2366cf6ff3ccc33ead9ace5b691c7 # v0.5.130
with:
Expand Down
Loading