We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ee3df46 commit c98b5adCopy full SHA for c98b5ad
1 file changed
.github/workflows/release.yml
@@ -60,7 +60,10 @@ jobs:
60
- name: Publish
61
env:
62
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}
63
- run: cargo release publish --workspace --execute --no-confirm --allow-branch HEAD
+ # --isolated ignores [workspace.metadata.release], whose `publish = false`
64
+ # (kept so local `cargo release <version>` only tags) would otherwise make
65
+ # this a silent no-op.
66
+ run: cargo release publish --workspace --execute --no-confirm --allow-branch HEAD --isolated
67
68
github_release:
69
name: Create GitHub Release
0 commit comments