ci: release script default to 'payload-2' tag

This commit is contained in:
Elliot DeNolf
2024-12-03 08:38:40 -05:00
parent 6f453ea05a
commit 216e4ef077

View File

@@ -16,7 +16,7 @@ const execOpts: ExecSyncOptions = { stdio: 'inherit' }
const args = minimist(process.argv.slice(2))
async function main() {
const { tag = 'latest', bump = 'patch', pkg } = args
const { tag = 'payload-2', bump = 'patch', pkg } = args
if (!semver.RELEASE_TYPES.includes(bump)) {
abort(`Invalid bump type: ${bump}.\n\nMust be one of: ${semver.RELEASE_TYPES.join(', ')}`)