We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3116ed7 commit 04acac9Copy full SHA for 04acac9
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "whop-sdk-ts",
3
- "version": "0.0.2-canary.0",
+ "version": "0.0.2-canary.1",
4
"private": true,
5
"workspaces": [
6
"apps/*",
packages/repo-utils/src/release.ts
@@ -152,6 +152,10 @@ const main2 = async () => {
152
latestCommit.sha,
153
latestRelease?.target_commitish
154
);
155
- await release(latestCommit.sha, stats, false);
+ await release(
156
+ latestCommit.sha,
157
+ stats,
158
+ /^v\d+\.\d+\.\d+-canary\.\d+$/.test(version)
159
+ );
160
};
161
main2();
0 commit comments