@@ -210,7 +210,8 @@ Release process is handled by `release`, `dist` and `promote` xtasks, `release`
210
210
./rust-rust-analyzer # Note the name!
211
211
```
212
212
213
- Additionally, it assumes that the remote for ` rust-analyzer ` is called ` upstream ` (I use ` origin ` to point to my fork).
213
+ The remote for ` rust-analyzer ` must be called ` upstream ` (I use ` origin ` to point to my fork).
214
+ In addition, for ` xtask promote ` (see below), ` rust-rust-analyzer ` must have a ` rust-analyzer ` remote pointing to this repository on GitHub.
214
215
215
216
` release ` calls the GitHub API calls to scrape pull request comments and categorize them in the changelog.
216
217
This step uses the ` curl ` and ` jq ` applications, which need to be available in ` PATH ` .
@@ -225,13 +226,13 @@ Release steps:
225
226
* push it to ` upstream ` . This triggers GitHub Actions which:
226
227
* runs ` cargo xtask dist ` to package binaries and VS Code extension
227
228
* makes a GitHub release
228
- * pushes VS Code extension to the marketplace
229
+ * publishes the VS Code extension to the marketplace
229
230
* call the GitHub API for PR details
230
231
* create a new changelog in ` rust-analyzer.github.io `
231
232
3 . While the release is in progress, fill in the changelog
232
233
4 . Commit & push the changelog
233
234
5 . Tweet
234
- 6 . Inside ` rust-analyzer ` , run ` cargo xtask promote ` -- this will create a PR to rust-lang/rust updating rust-analyzer's submodule .
235
+ 6 . Inside ` rust-analyzer ` , run ` cargo xtask promote ` -- this will create a PR to rust-lang/rust updating rust-analyzer's subtree .
235
236
Self-approve the PR.
236
237
237
238
If the GitHub Actions release fails because of a transient problem like a timeout, you can re-run the job from the Actions console.
0 commit comments