Skip to content

Commit 36212a4

Browse files
committed
setup release branch
1 parent e08402b commit 36212a4

File tree

3 files changed

+12
-22
lines changed

3 files changed

+12
-22
lines changed

.github/workflows/build_and_deploy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ jobs:
6262
elif [[ $RELEASE_CHECK == v* ]];
6363
then
6464
echo "value=production" >> $GITHUB_OUTPUT
65-
elif [ '${{ github.ref }}' == 'refs/heads/canary' ]
65+
elif [ '${{ github.ref }}' == 'refs/heads/next-16-0' ]
6666
then
6767
echo "value=staging" >> $GITHUB_OUTPUT
6868
elif [ '${{ github.event_name }}' == 'workflow_dispatch' ]
@@ -648,7 +648,7 @@ jobs:
648648

649649
publish-turbopack-npm-packages:
650650
# Matches the commit message written by turbopack/xtask/src/publish.rs:377
651-
if: "${{(github.ref == 'refs/heads/canary') && startsWith(github.event.head_commit.message, 'chore: release turbopack npm packages')}}"
651+
if: "${{(github.ref == 'refs/heads/next-16-0') && startsWith(github.event.head_commit.message, 'chore: release turbopack npm packages')}}"
652652
runs-on: ubuntu-latest
653653
permissions:
654654
contents: write

.github/workflows/build_and_test.yml

Lines changed: 7 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: build-and-test
22

33
on:
44
push:
5-
branches: ['canary']
5+
branches: ['next-16-0']
66
pull_request:
77
types: [opened, synchronize]
88

@@ -613,7 +613,7 @@ jobs:
613613
name: Test new tests for flakes (dev)
614614
needs: ['optimize-ci', 'changes', 'build-native', 'build-next']
615615
# test-new-tests-if
616-
if: ${{ needs.optimize-ci.outputs.skip == 'false' && needs.changes.outputs.docs-only == 'false' }}
616+
if: false
617617
# test-new-tests-end-if
618618

619619
strategy:
@@ -637,7 +637,7 @@ jobs:
637637
name: Test new tests for flakes (prod)
638638
needs: ['optimize-ci', 'changes', 'build-native', 'build-next']
639639
# test-new-tests-if
640-
if: ${{ needs.optimize-ci.outputs.skip == 'false' && needs.changes.outputs.docs-only == 'false' }}
640+
if: false
641641
# test-new-tests-end-if
642642

643643
strategy:
@@ -658,10 +658,9 @@ jobs:
658658

659659
test-new-tests-deploy:
660660
name: Test new tests when deployed
661-
needs:
662-
['optimize-ci', 'test-prod', 'test-new-tests-dev', 'test-new-tests-start']
661+
needs: ['optimize-ci', 'test-prod', 'test-new-tests-start']
663662
# test-new-tests-if
664-
if: ${{ needs.optimize-ci.outputs.skip == 'false' }}
663+
if: false
665664
# test-new-tests-end-if
666665

667666
strategy:
@@ -683,15 +682,9 @@ jobs:
683682

684683
test-new-tests-deploy-cache-components:
685684
name: Test new tests when deployed (cache components)
686-
needs:
687-
[
688-
'optimize-ci',
689-
'test-cache-components-prod',
690-
'test-new-tests-dev',
691-
'test-new-tests-start',
692-
]
685+
needs: ['optimize-ci', 'test-cache-components-prod']
693686
# test-new-tests-if
694-
if: ${{ needs.optimize-ci.outputs.skip == 'false' }}
687+
if: false
695688
# test-new-tests-end-if
696689

697690
strategy:
@@ -1018,10 +1011,6 @@ jobs:
10181011
'test-next-swc-wasm',
10191012
'test-turbopack-dev',
10201013
'test-turbopack-integration',
1021-
'test-new-tests-dev',
1022-
'test-new-tests-start',
1023-
'test-new-tests-deploy',
1024-
'test-new-tests-deploy-cache-components',
10251014
'test-turbopack-production',
10261015
'test-turbopack-production-integration',
10271016
'test-unit-windows',

lerna.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,11 @@
1111
"publish": {
1212
"npmClient": "npm",
1313
"allowBranch": [
14-
"canary"
14+
"canary",
15+
"next-16-0"
1516
],
1617
"registry": "https://registry.npmjs.org/"
1718
}
1819
},
1920
"version": "16.0.1"
20-
}
21+
}

0 commit comments

Comments
 (0)