Skip to content

Commit

Permalink
fix(ci): make it so ci doesnt overwrite the release builds with canar…
Browse files Browse the repository at this point in the history
…y's debug symbols (#11769)

Co-authored-by: Jarred Sumner <[email protected]>
  • Loading branch information
paperdave and Jarred-Sumner authored Jun 11, 2024
1 parent 6ff074a commit 6e0f58b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/bun-release/scripts/upload-s3.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ if (latest.tag_name === release.tag_name) {
} else if (release.tag_name === "canary") {
try {
const build = await getSemver("canary", await getBuild());
paths = ["releases/canary", `releases/${build}`, `releases/${full_commit_hash}`];
paths = ["releases/canary", `releases/${build}`, `releases/${full_commit_hash}-canary`];
} catch (error) {
console.warn(error);
paths = ["releases/canary"];
Expand Down

0 comments on commit 6e0f58b

Please sign in to comment.