We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c0c9b1e commit 250a984Copy full SHA for 250a984
scripts/release-stable.ts
@@ -134,6 +134,11 @@ if (!validSpecifiers.includes(versionSpecifier) && !isValidVersion) {
134
console.log('No changes to commit')
135
}
136
137
+ if (process.env.RELEASE_GITHUB_TOKEN) {
138
+ const remoteUrl = `https://x-access-token:${process.env.RELEASE_GITHUB_TOKEN}@github.com/supabase/supabase-js.git`
139
+ execSync(`git remote set-url origin "${remoteUrl}"`)
140
+ }
141
+
142
execSync(`git push origin ${branchName}`)
143
144
// Open PR using GitHub CLI
0 commit comments