about summary refs log tree commit diff
diff options
context:
space:
mode:
authorLukas Wirth <lukastw97@gmail.com>2022-09-27 18:22:06 +0200
committerLukas Wirth <lukastw97@gmail.com>2022-09-27 18:22:06 +0200
commitf310d4cbb4ac792ecfe2bb680c869bb732e9e7af (patch)
treea2b6b48acb5cfdcb1308b1af59d27bb41f76c3a3
parentb16b0413dc088f5daa5fd1800d016a31bd2cfecf (diff)
downloadrust-f310d4cbb4ac792ecfe2bb680c869bb732e9e7af.tar.gz
rust-f310d4cbb4ac792ecfe2bb680c869bb732e9e7af.zip
Don't auto-publish lib crates
-rw-r--r--.github/workflows/publish.yml6
1 files changed, 4 insertions, 2 deletions
diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml
index a4497f49e3c..73e62ab32c6 100644
--- a/.github/workflows/publish.yml
+++ b/.github/workflows/publish.yml
@@ -2,8 +2,8 @@ name: publish
 on:
   workflow_dispatch: # We can add version input when 1.0 is released and scheduled releases are removed
 
-#   schedule:
-#     - cron: "0 0 * * *" # midnight UTC
+  #   schedule:
+  #     - cron: "0 0 * * *" # midnight UTC
 
   push:
     branches:
@@ -50,5 +50,7 @@ jobs:
           cargo workspaces rename --from test-utils test_utils
           cargo workspaces rename --from text-edit text_edit
           cargo workspaces rename ra_ap_%n
+          # Remove library crates from the workspaces so we don't auto-publish them as well
+          sed -i 's/ "lib\/\*",//' ./Cargo.toml
           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.$PATCH