WIP: Change nightly builds to deploy from each push to main (and change name)

Fixes #6749
This commit is contained in:
Pierre Jacquier
2025-05-10 13:15:55 -04:00
parent 4fb7065ddf
commit 24c46c70fe
17 changed files with 100 additions and 153 deletions

View File

@ -42,7 +42,7 @@ impl Build {
.to_string();
if !stable {
version = format!("{}-nightly", version);
version = format!("{}-staging", version);
}
let release_tag = if stable {
@ -53,7 +53,7 @@ impl Build {
.replace("refs/tags/", "")
.to_string()
} else {
"nightly".to_string()
"staging".to_string()
};
if stable && !release_tag.contains(&version) {