Skip to content

Commit db60d69

Browse files
committed
rust: add -full to published full release archives
If we have `install_only` it makes sense to have an additional suffix for denoting the full build variation.
1 parent 0ae43b0 commit db60d69

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/github.rs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,10 @@ pub async fn command_upload_release_distributions(args: &ArgMatches) -> Result<(
240240
"cpython-{}-{}-{}-{}.tar.zst",
241241
version, triple, suffix, datetime
242242
),
243-
format!("cpython-{}+{}-{}-{}.tar.zst", version, tag, triple, suffix),
243+
format!(
244+
"cpython-{}+{}-{}-{}-full.tar.zst",
245+
version, tag, triple, suffix
246+
),
244247
);
245248
}
246249

0 commit comments

Comments
 (0)