Skip to content

Commit

Permalink
ci: add beta releases (#365)
Browse files Browse the repository at this point in the history
  • Loading branch information
rafaelcr authored Sep 20, 2024
1 parent d4b67bb commit 8eac12e
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 19 deletions.
1 change: 1 addition & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ on:
push:
branches:
- main
- beta
- develop
paths-ignore:
- "**/CHANGELOG.md"
Expand Down
43 changes: 24 additions & 19 deletions .releaserc
Original file line number Diff line number Diff line change
@@ -1,22 +1,27 @@
{
"branches": [
"main"
"branches": [
"main",
{
"name": "beta",
"channel": "beta",
"prerelease": true
}
],
"plugins": [
[
"@semantic-release/commit-analyzer",
{
"preset": "conventionalcommits"
}
],
"plugins": [
[
"@semantic-release/commit-analyzer",
{
"preset": "conventionalcommits"
}
],
[
"@semantic-release/release-notes-generator",
{
"preset": "conventionalcommits"
}
],
"@semantic-release/github",
"@semantic-release/changelog",
"@semantic-release/git"
]
[
"@semantic-release/release-notes-generator",
{
"preset": "conventionalcommits"
}
],
"@semantic-release/github",
"@semantic-release/changelog",
"@semantic-release/git"
]
}

0 comments on commit 8eac12e

Please sign in to comment.