Skip to content

Commit 4309d93

Browse files
committed
update tag
1 parent 17e6873 commit 4309d93

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

scripts/publish-native.js

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,9 @@ const cwd = process.cwd()
4747
`${path.join(nativePackagesDir, platform)}`,
4848
`--access`,
4949
`public`,
50-
...(version.includes('canary') ? ['--tag', 'canary'] : []),
50+
...(version.includes('canary')
51+
? ['--tag', 'canary']
52+
: ['--tag', 'next-15-4']),
5153
],
5254
{ stdio: 'inherit' }
5355
)
@@ -105,7 +107,9 @@ const cwd = process.cwd()
105107
`${path.join(wasmDir, `pkg-${wasmTarget}`)}`,
106108
'--access',
107109
'public',
108-
...(version.includes('canary') ? ['--tag', 'canary'] : []),
110+
...(version.includes('canary')
111+
? ['--tag', 'canary']
112+
: ['--tag', 'next-15-4']),
109113
],
110114
{ stdio: 'inherit' }
111115
)

scripts/publish-release.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ const cwd = process.cwd()
3434
throw err
3535
}
3636

37-
let tag = isCanary ? 'canary' : isReleaseCandidate ? 'rc' : 'latest'
37+
let tag = isCanary ? 'canary' : isReleaseCandidate ? 'rc' : 'next-15-4'
3838

3939
try {
4040
if (!isCanary && !isReleaseCandidate) {

0 commit comments

Comments
 (0)