Skip to content

Commit

Permalink
ci: add release process for support branches
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcScheib committed Oct 10, 2024
1 parent 33cadd7 commit e4e8a50
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 1 deletion.
7 changes: 7 additions & 0 deletions .github/workflows/push_branch-main_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,13 @@ on:
push:
branches:
- main
- master
- next
- next-major
- beta
- alpha
- '[0-9]+.[0-9]+.x'
- '[0-9]+.x'

env:
java-version: 21
Expand Down
14 changes: 13 additions & 1 deletion .releaserc
Original file line number Diff line number Diff line change
@@ -1,6 +1,18 @@
{
"branches": [
"main"
"+([0-9])?(.{+([0-9]),x}).x",
"master",
"main",
"next",
"next-major",
{
"name": "beta",
"prerelease": true
},
{
"name": "alpha",
"prerelease": true
}
],
"plugins": [
"@semantic-release/commit-analyzer",
Expand Down

0 comments on commit e4e8a50

Please sign in to comment.