diff --git a/.github/workflows/build_and_deploy.yml b/.github/workflows/build_and_deploy.yml index 82ac9931614af..e585a05bac19c 100644 --- a/.github/workflows/build_and_deploy.yml +++ b/.github/workflows/build_and_deploy.yml @@ -2,7 +2,7 @@ name: build-and-deploy on: push: - branches: ['canary'] + branches: ['canary', '14-2-1'] workflow_dispatch: env: diff --git a/.github/workflows/build_and_test.yml b/.github/workflows/build_and_test.yml index 1606168096e70..3b025d292054a 100644 --- a/.github/workflows/build_and_test.yml +++ b/.github/workflows/build_and_test.yml @@ -2,7 +2,7 @@ name: build-and-test on: push: - branches: ['canary'] + branches: ['canary', '14-2-1'] pull_request: types: [opened, synchronize] diff --git a/lerna.json b/lerna.json index e3dfaeb7b02d4..caca700585728 100644 --- a/lerna.json +++ b/lerna.json @@ -11,7 +11,7 @@ "publish": { "npmClient": "npm", "allowBranch": [ - "canary" + "14-2-1" ], "registry": "https://registry.npmjs.org/" } diff --git a/scripts/publish-native.js b/scripts/publish-native.js index 6d91e36941e66..8562c443e438a 100755 --- a/scripts/publish-native.js +++ b/scripts/publish-native.js @@ -49,7 +49,9 @@ const cwd = process.cwd() `${path.join(nativePackagesDir, platform)}`, `--access`, `public`, - ...(version.includes('canary') ? ['--tag', 'canary'] : []), + ...(version.includes('canary') + ? ['--tag', 'canary'] + : ['--tag', '14-2-1']), ], { stdio: 'inherit' } ) diff --git a/scripts/publish-release.js b/scripts/publish-release.js index 943174990303f..72d40b01e6cc0 100755 --- a/scripts/publish-release.js +++ b/scripts/publish-release.js @@ -53,7 +53,7 @@ const cwd = process.cwd() '--access', 'public', '--ignore-scripts', - ...(isCanary ? ['--tag', 'canary'] : []), + ...(isCanary ? ['--tag', 'canary'] : ['--tag', '14-2-1']), ], { stdio: 'pipe' } )