Skip to content

Commit d900eaa

Browse files
committed
update publish tag
1 parent 1daa66d commit d900eaa

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
@@ -49,7 +49,9 @@ const cwd = process.cwd()
4949
`${path.join(nativePackagesDir, platform)}`,
5050
`--access`,
5151
`public`,
52-
...(version.includes('canary') ? ['--tag', 'canary'] : []),
52+
...(version.includes('canary')
53+
? ['--tag', 'canary']
54+
: ['--tag', 'next-15-0-0']),
5355
],
5456
{ stdio: 'inherit' }
5557
)
@@ -107,7 +109,9 @@ const cwd = process.cwd()
107109
`${path.join(wasmDir, `pkg-${wasmTarget}`)}`,
108110
'--access',
109111
'public',
110-
...(version.includes('canary') ? ['--tag', 'canary'] : []),
112+
...(version.includes('canary')
113+
? ['--tag', 'canary']
114+
: ['--tag', 'next-15-0-0']),
111115
],
112116
{ stdio: 'inherit' }
113117
)

scripts/publish-release.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ const cwd = process.cwd()
6161
? ['--tag', 'canary']
6262
: isReleaseCandidate
6363
? ['--tag', 'rc']
64-
: []),
64+
: ['--tag', 'next-15-0-0']),
6565
],
6666
{ stdio: 'pipe' }
6767
)

0 commit comments

Comments
 (0)