Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/create-github-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ on:
- prerelease/**
- 252-patch
- 254-patch
- 256-patch
tags-ignore:
- '*'
workflow_dispatch:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/onRelease.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
#ctc: true
sign: true
# 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'
tag: ${{ needs.getDistTag.outputs.tag || (needs.getMajorVersion.outputs.major == '2' && 'latest') ||'next' }}
tag: ${{ needs.getDistTag.outputs.tag || (needs.getMajorVersion.outputs.major == '2' && 'latest') || (needs.getMajorVersion.outputs.major == '3' && 'prerelease') ||'next' }}
githubTag: ${{ github.event.release.tag_name || inputs.tag }}

secrets: inherit
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: tests
on:
push:
branches-ignore: [main, 252-patch, 254-patch]
branches-ignore: [main, 252-patch, 254-patch, 256-patch]
workflow_dispatch:

jobs:
Expand Down
8 changes: 6 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -238,14 +238,18 @@
"versionToTagMappings": [
{
"versionNumber": "62.0",
"tagName": "latest"
"tagName": "v1"
},
{
"versionNumber": "63.0",
"tagName": "prerelease"
"tagName": "latest"
},
{
"versionNumber": "64.0",
"tagName": "prerelease"
},
{
"versionNumber": "65.0",
"tagName": "next"
}
]
Expand Down
Loading