Use the release branch in xtask promote

This commit is contained in:
Laurențiu Nicola 2022-08-03 09:48:44 +03:00
parent 1c03f45c08
commit 9a447c04f6

View file

@ -81,7 +81,7 @@ pub(crate) fn run(self, sh: &Shell) -> anyhow::Result<()> {
let date = date_iso(sh)?;
let branch = format!("rust-analyzer-{date}");
cmd!(sh, "git switch -c {branch}").run()?;
cmd!(sh, "git subtree pull -P src/tools/rust-analyzer rust-analyzer master").run()?;
cmd!(sh, "git subtree pull -m ':arrow_up: rust-analyzer' -P src/tools/rust-analyzer rust-analyzer release").run()?;
if !self.dry_run {
cmd!(sh, "git push -u origin {branch}").run()?;