We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 5e753ff + 696ecea commit a2b10a3Copy full SHA for a2b10a3
src/tools/rust-analyzer/.github/workflows/publish-libs.yaml
@@ -30,7 +30,6 @@ jobs:
30
run: |
31
git config --global user.email "runner@gha.local"
32
git config --global user.name "GitHub Action"
33
- # Remove r-a crates from the workspaces so we don't auto-publish them as well
34
- sed -i 's/"crates\/\*"//' ./Cargo.toml
35
- sed -i 's/"xtask\/"//' ./Cargo.toml
+ # Only publish the crates under lib/
+ sed -i 's|^members = .*$|members = ["lib/*"]|' Cargo.toml
36
cargo workspaces publish --yes --exact --from-git --no-git-commit --allow-dirty
0 commit comments