diff options
| author | bors <bors@rust-lang.org> | 2024-08-12 10:06:38 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2024-08-12 10:06:38 +0000 |
| commit | 563dc1cd335360415c3ca532635abba68db9b024 (patch) | |
| tree | f347648b918a467240f1d9ddf54032626389a8ed | |
| parent | 7c53ff2da4d3cc7a7e6b64db9e0004a22a454dc5 (diff) | |
| parent | 407944764ae9bc71ec7957adf36a414bd2f55e29 (diff) | |
| download | rust-563dc1cd335360415c3ca532635abba68db9b024.tar.gz rust-563dc1cd335360415c3ca532635abba68db9b024.zip | |
Auto merge of #17860 - Veykril:publish-libs, r=Veykril
fix: Fix publish libs workflow
| -rw-r--r-- | src/tools/rust-analyzer/.github/workflows/publish-libs.yaml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tools/rust-analyzer/.github/workflows/publish-libs.yaml b/src/tools/rust-analyzer/.github/workflows/publish-libs.yaml index 34ca53e2e53..945cbf6767b 100644 --- a/src/tools/rust-analyzer/.github/workflows/publish-libs.yaml +++ b/src/tools/rust-analyzer/.github/workflows/publish-libs.yaml @@ -31,6 +31,6 @@ jobs: git config --global user.email "runner@gha.local" git config --global user.name "GitHub Action" # Remove r-a crates from the workspaces so we don't auto-publish them as well - sed -i 's/ "crates\/\*"//' ./Cargo.toml - sed -i 's/ "xtask\/"//' ./Cargo.toml + sed -i 's/"crates\/\*"//' ./Cargo.toml + sed -i 's/"xtask\/"//' ./Cargo.toml cargo workspaces publish --yes --exact --from-git --no-git-commit --allow-dirty |
