Skip to content

Commit f2c121d

Browse files
chore: Allow release from 1.x
Branch name needs to be 1.x-Maintenance instead of just 1.x because of the way semantic release works. References: semantic-release/semantic-release#1487 (comment)
1 parent 8a57a22 commit f2c121d

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55
branches:
66
- dev
77
- next
8-
- main
8+
- 1.x-Maintenance
99
workflow_dispatch:
1010

1111
permissions:

release.config.cjs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
module.exports = {
22
branches: [
33
{ name: 'main', channel: 'latest' },
4+
{ name: '1.x-Maintenance', channel: 'latest' },
45
{ name: 'next', channel: 'next', prerelease: true },
56
{ name: 'dev', channel: 'dev', prerelease: true }
67
],

0 commit comments

Comments
 (0)