Skip to content

Commit ef98bd9

Browse files
authored
feat: 254-patch prerelease @W-15440507@ (#300)
1 parent d1b5095 commit ef98bd9

File tree

5 files changed

+9
-3
lines changed

5 files changed

+9
-3
lines changed

.github/workflows/create-github-release.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ on:
66
- main
77
- prerelease/**
88
- 252-patch
9+
- 254-patch
910
tags-ignore:
1011
- '*'
1112
workflow_dispatch:

.github/workflows/onRelease.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,8 @@ jobs:
4747
with:
4848
#ctc: true
4949
sign: true
50-
tag: ${{ needs.getDistTag.outputs.tag || (needs.getMajorVersion.outputs.major == '1') && 'latest' || 'next' }}
50+
# At CLCO, the new patch branch's version will be released as 'prerelease'. After R2b, delete the logic below for 'latest' and update 'prerelease' candidate to 'latest'
51+
tag: ${{ needs.getDistTag.outputs.tag || (needs.getMajorVersion.outputs.major == '1' && 'latest') || (needs.getMajorVersion.outputs.major == '2' && 'prerelease') ||'next' }}
5152
githubTag: ${{ github.event.release.tag_name || inputs.tag }}
5253

5354
secrets: inherit

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: tests
22
on:
33
push:
4-
branches-ignore: [main, 252-patch]
4+
branches-ignore: [main, 252-patch, 254-patch]
55
workflow_dispatch:
66

77
jobs:

.github/workflows/validate-pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on:
44
pull_request:
55
types: [opened, reopened, edited]
66
# only applies to PRs that want to merge to main
7-
branches: [main, 252-patch]
7+
branches: [main, 252-patch, 254-patch]
88

99
jobs:
1010
pr-validation:

package.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -228,6 +228,10 @@
228228
},
229229
{
230230
"versionNumber": "63.0",
231+
"tagName": "prerelease"
232+
},
233+
{
234+
"versionNumber": "64.0",
231235
"tagName": "next"
232236
}
233237
]

0 commit comments

Comments
 (0)