Skip to content

Commit e52c674

Browse files
jakex7Eric-Tyrrell22
authored andcommitted
[tools][pp] Dont assign sdk tags for canaries (expo#38989)
# Why Follow up to expo#38988 # How Canaries should **not** have `sdk-x` tag assigned.
1 parent 5d2a79f commit e52c674

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/src/publish-packages/tasks/publishPackages.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ export const publishPackages = new Task<TaskArgs>(
6666
},
6767
});
6868
// Assign SDK tag when package is a template
69-
if (pkg.isTemplate()) {
69+
if (pkg.isTemplate() && !options.canary) {
7070
const sdkTag = `sdk-${semver.major(pkg.packageVersion)}`;
7171
logger.log(' ', `Assigning ${yellow(sdkTag)} tag to ${green(pkg.packageName)}`);
7272
if (!options.dry) {

0 commit comments

Comments
 (0)