diff options
| author | Laurențiu Nicola <lnicola@users.noreply.github.com> | 2025-06-04 06:34:25 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-06-04 06:34:25 +0000 |
| commit | b02d03417ab6b28b46e7c9ac47790b3e3b713f1a (patch) | |
| tree | ce9449471b80bc62770fcee500c88fec0cdf7ffe | |
| parent | 8f5d00791767bb70d2bf1834d5c1c693e0db52e2 (diff) | |
| parent | d61d0f7977c74442ae57881db6c04ce3931d4926 (diff) | |
| download | rust-b02d03417ab6b28b46e7c9ac47790b3e3b713f1a.tar.gz rust-b02d03417ab6b28b46e7c9ac47790b3e3b713f1a.zip | |
Merge pull request #19920 from ShoyuVanilla/patch-2
fix: Typo mistake in CI
| -rw-r--r-- | src/tools/rust-analyzer/.github/workflows/autopublish.yaml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/rust-analyzer/.github/workflows/autopublish.yaml b/src/tools/rust-analyzer/.github/workflows/autopublish.yaml index 13b6078a3ed..788b3a3a005 100644 --- a/src/tools/rust-analyzer/.github/workflows/autopublish.yaml +++ b/src/tools/rust-analyzer/.github/workflows/autopublish.yaml @@ -55,7 +55,7 @@ jobs: cargo workspaces rename --from test-fixture test_fixture cargo workspaces rename --from test-utils test_utils # Remove library crates and xtask from the workspaces so we don't auto-publish them as well - sed -i 's/"xtask\\/",//; s/ "lib\/\*",//' ./Cargo.toml + sed -i 's|^members = .*$|members = ["crates/*"]|' Cargo.toml cargo workspaces rename ra_ap_%n find crates/rust-analyzer -type f -name '*.rs' -exec sed -i 's/rust_analyzer/ra_ap_rust_analyzer/g' {} + cargo workspaces publish --yes --force '*' --exact --no-git-commit --allow-dirty --skip-published custom 0.0.$(($RUN_NUMBER + 133)) |
