From 216e4ef077d8a7f37d6a037152e887ab7a67bbb9 Mon Sep 17 00:00:00 2001 From: Elliot DeNolf Date: Tue, 3 Dec 2024 08:38:40 -0500 Subject: [PATCH] ci: release script default to 'payload-2' tag --- scripts/release.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/release.ts b/scripts/release.ts index 79a94bd780..c97ea7099a 100755 --- a/scripts/release.ts +++ b/scripts/release.ts @@ -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(', ')}`)