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
5 changes: 4 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,10 @@ jobs:
- name: Publish
env:
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}
run: cargo release publish --workspace --execute --no-confirm --allow-branch HEAD
# --isolated ignores [workspace.metadata.release], whose `publish = false`
# (kept so local `cargo release <version>` only tags) would otherwise make
# this a silent no-op.
run: cargo release publish --workspace --execute --no-confirm --allow-branch HEAD --isolated

github_release:
name: Create GitHub Release
Expand Down
Loading