chore: publish to the latest tag correctly when releasing old versions (#15274)

This commit is contained in:
Samuel Attard 2018-11-01 12:27:35 +11:00 committed by GitHub
parent e9fab747ec
commit 6ed70327f5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -5,6 +5,7 @@ const childProcess = require('child_process')
const GitHubApi = require('github') const GitHubApi = require('github')
const { GitProcess } = require('dugite') const { GitProcess } = require('dugite')
const request = require('request') const request = require('request')
const semver = require('semver')
const rootPackageJson = require('../package.json') const rootPackageJson = require('../package.json')
if (!process.env.ELECTRON_NPM_OTP) { if (!process.env.ELECTRON_NPM_OTP) {
@ -109,15 +110,26 @@ new Promise((resolve, reject) => {
}) })
}) })
.then(async (release) => { .then(async (release) => {
const currentBranch = await getCurrentBranch()
if (release.tag_name.indexOf('nightly') > 0) { if (release.tag_name.indexOf('nightly') > 0) {
const currentBranch = await getCurrentBranch()
if (currentBranch === 'master') { if (currentBranch === 'master') {
npmTag = 'nightly' npmTag = 'nightly'
} else { } else {
npmTag = `nightly-${currentBranch}` npmTag = `nightly-${currentBranch}`
} }
} else { } else {
npmTag = release.prerelease ? 'beta' : 'latest' if (currentBranch === 'master') {
// This should never happen, master releases should be nightly releases
// this is here just-in-case
npmTag = 'master'
} else if (!release.prerelease) {
// Tag the release with a `2-0-x` style tag
npmTag = currentBranch
} else {
// Tag the release with a `beta-3-0-x` style tag
npmTag = `beta-${currentBranch}`
}
} }
}) })
.then(() => childProcess.execSync('npm pack', { cwd: tempDir })) .then(() => childProcess.execSync('npm pack', { cwd: tempDir }))
@ -133,6 +145,19 @@ new Promise((resolve, reject) => {
}) })
}) })
.then((tarballPath) => childProcess.execSync(`npm publish ${tarballPath} --tag ${npmTag} --otp=${process.env.ELECTRON_NPM_OTP}`)) .then((tarballPath) => childProcess.execSync(`npm publish ${tarballPath} --tag ${npmTag} --otp=${process.env.ELECTRON_NPM_OTP}`))
.then(() => {
const currentTags = JSON.parse(childProcess.execSync('npm show electron dist-tags --json').toString())
const localVersion = rootPackageJson.version
const parsedLocalVersion = semver.parse(localVersion)
if (parsedLocalVersion.prerelease.length === 0 &&
semver.gt(localVersion, currentTags.latest)) {
childProcess.execSync(`npm dist-tag add electron@${localVersion} latest --otp=${process.env.ELECTRON_NPM_OTP}`)
}
if (parsedLocalVersion.prerelease[0] === 'beta' &&
semver.gt(localVersion, currentTags.beta)) {
childProcess.execSync(`npm dist-tag add electron@${localVersion} beta --otp=${process.env.ELECTRON_NPM_OTP}`)
}
})
.catch((err) => { .catch((err) => {
console.error(`Error: ${err}`) console.error(`Error: ${err}`)
process.exit(1) process.exit(1)