Skip to content

Commit c149906

Browse files
authored
feat: 256-patch prerelease (v3) @W-18658526 (#413)
1 parent f53539d commit c149906

File tree

4 files changed

+9
-4
lines changed

4 files changed

+9
-4
lines changed

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

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

.github/workflows/onRelease.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
#ctc: true
4949
sign: true
5050
# 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 == '2' && 'latest') ||'next' }}
51+
tag: ${{ needs.getDistTag.outputs.tag || (needs.getMajorVersion.outputs.major == '2' && 'latest') || (needs.getMajorVersion.outputs.major == '3' && 'prerelease') ||'next' }}
5252
githubTag: ${{ github.event.release.tag_name || inputs.tag }}
5353

5454
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, 254-patch]
4+
branches-ignore: [main, 252-patch, 254-patch, 256-patch]
55
workflow_dispatch:
66

77
jobs:

package.json

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -238,14 +238,18 @@
238238
"versionToTagMappings": [
239239
{
240240
"versionNumber": "62.0",
241-
"tagName": "latest"
241+
"tagName": "v1"
242242
},
243243
{
244244
"versionNumber": "63.0",
245-
"tagName": "prerelease"
245+
"tagName": "latest"
246246
},
247247
{
248248
"versionNumber": "64.0",
249+
"tagName": "prerelease"
250+
},
251+
{
252+
"versionNumber": "65.0",
249253
"tagName": "next"
250254
}
251255
]

0 commit comments

Comments
 (0)