Skip to content

Commit

Permalink
chore: Allow release from 1.x
Browse files Browse the repository at this point in the history
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)
  • Loading branch information
OS-pedrogustavobilro committed Jan 15, 2025
1 parent 8a57a22 commit f2c121d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
branches:
- dev
- next
- main
- 1.x-Maintenance
workflow_dispatch:

permissions:
Expand Down
1 change: 1 addition & 0 deletions release.config.cjs
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
module.exports = {
branches: [
{ name: 'main', channel: 'latest' },
{ name: '1.x-Maintenance', channel: 'latest' },
{ name: 'next', channel: 'next', prerelease: true },
{ name: 'dev', channel: 'dev', prerelease: true }
],
Expand Down

0 comments on commit f2c121d

Please sign in to comment.