We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8a845ed commit 6d46583Copy full SHA for 6d46583
.github/workflows/publish.yml
@@ -12,7 +12,7 @@ on:
12
jobs:
13
publish:
14
name: publish
15
- runs-on: ubuntu-16.04
+ runs-on: ubuntu-latest
16
steps:
17
- name: Checkout repository
18
uses: actions/checkout@v2
@@ -41,5 +41,5 @@ jobs:
41
git config --global user.name "Github Action"
42
rm Cargo.lock
43
cargo workspaces rename ra_ap_%n
44
- sed -i 's/rust_analyzer/ra_ap_rust_analyzer/g' crates/rust-analyzer/**/*.rs
+ find crates/rust-analyzer -type f -name '*.rs' -exec sed -i 's/rust_analyzer/ra_ap_rust_analyzer/g' {} +
45
cargo workspaces publish --yes --force '*' --exact --no-git-commit --allow-dirty --skip-published custom 0.0.$PATCH
0 commit comments