File size: 3,502 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 |
// @ts-check
const fs = require('fs')
const path = require('path')
const execa = require('execa')
const resolveFrom = require('resolve-from')
async function main() {
const args = process.argv
const branchName = args[args.indexOf('--branch-name') + 1]
const tagName = args[args.indexOf('--tag-name') + 1]
if (!branchName) {
throw new Error('branchName value is missing!')
}
if (!tagName || !tagName.startsWith('v')) {
throw new Error('tagName value is invalid "' + tagName + '"')
}
const githubToken = process.env.RELEASE_BOT_GITHUB_TOKEN
if (!githubToken) {
console.log(`Missing RELEASE_BOT_GITHUB_TOKEN`)
return
}
const configStorePath = resolveFrom(
path.join(process.cwd(), 'node_modules/release'),
'configstore'
)
const ConfigStore = require(configStorePath)
const config = new ConfigStore('release')
config.set('token', githubToken)
await execa(
`git remote set-url origin https://nextjs-bot:${githubToken}@github.com/vercel/next.js.git`,
{ stdio: 'inherit', shell: true }
)
await execa(`git config user.name "nextjs-bot"`, {
stdio: 'inherit',
shell: true,
})
await execa(`git config user.email "it+nextjs-bot@vercel.com"`, {
stdio: 'inherit',
shell: true,
})
await execa(`git checkout -b "${branchName}"`, {
stdio: 'inherit',
shell: true,
})
await execa(`git reset --hard ${tagName}`, {
stdio: 'inherit',
shell: true,
})
const lernaPath = path.join(__dirname, '..', 'lerna.json')
const existingLerna = JSON.parse(
await fs.promises.readFile(lernaPath, 'utf8')
)
existingLerna.command.publish.allowBranch.push(branchName)
await fs.promises.writeFile(lernaPath, JSON.stringify(existingLerna, null, 2))
const buildAndDeployPath = path.join(
__dirname,
'..',
'.github',
'workflows',
'build_and_deploy.yml'
)
const buildAndDeploy = await fs.promises.readFile(buildAndDeployPath, 'utf8')
await fs.promises.writeFile(
buildAndDeployPath,
buildAndDeploy.replace(/refs\/heads\/canary/g, `refs/heads/${branchName}`)
)
const buildAndTestPath = path.join(
__dirname,
'..',
'.github',
'workflows',
'build_and_test.yml'
)
const buildAndTest = await fs.promises.readFile(buildAndTestPath, 'utf8')
await fs.promises.writeFile(
buildAndTestPath,
buildAndTest.replace(`['canary']`, `['${branchName}']`)
)
await execa(`git add .`, {
stdio: 'inherit',
shell: true,
})
await execa(`git commit -m "setup release branch"`, {
stdio: 'inherit',
shell: true,
})
await execa(`git push origin "${branchName}"`, {
stdio: 'inherit',
shell: true,
})
console.log(`Waiting 5s before updating branch rules`)
await new Promise((resolve) => setTimeout(resolve, 5_000))
const updateEnvironmentRes = await fetch(
'https://api.github.com/repos/vercel/next.js/environments/release-stable/deployment-branch-policies',
{
method: 'POST',
headers: {
Accept: 'application/vnd.github+json',
Authorization: `Bearer ${githubToken}`,
'X-GitHub-Api-Version': '2022-11-28',
},
body: JSON.stringify({ name: branchName }),
}
)
if (!updateEnvironmentRes.ok) {
console.error(
{ status: updateEnvironmentRes.status },
await updateEnvironmentRes.text()
)
throw new Error(`Failed to update environment branch rules`)
}
console.log(`Successfully updated deployment environment branch rules`)
}
main()
|