We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 40cbeb5 + f310d4c commit f079792Copy full SHA for f079792
.github/workflows/publish.yml
@@ -2,8 +2,8 @@ name: publish
2
on:
3
workflow_dispatch: # We can add version input when 1.0 is released and scheduled releases are removed
4
5
-# schedule:
6
-# - cron: "0 0 * * *" # midnight UTC
+ # schedule:
+ # - cron: "0 0 * * *" # midnight UTC
7
8
push:
9
branches:
@@ -50,5 +50,7 @@ jobs:
50
cargo workspaces rename --from test-utils test_utils
51
cargo workspaces rename --from text-edit text_edit
52
cargo workspaces rename ra_ap_%n
53
+ # Remove library crates from the workspaces so we don't auto-publish them as well
54
+ sed -i 's/ "lib\/\*",//' ./Cargo.toml
55
find crates/rust-analyzer -type f -name '*.rs' -exec sed -i 's/rust_analyzer/ra_ap_rust_analyzer/g' {} +
56
cargo workspaces publish --yes --force '*' --exact --no-git-commit --allow-dirty --skip-published custom 0.0.$PATCH
0 commit comments