Skip to content

Commit

Permalink
chore: canary-* (#1555)
Browse files Browse the repository at this point in the history
* chore: canary releases support

* fix: gh actions
  • Loading branch information
abernier authored Jul 3, 2023
1 parent 00ee1ec commit a0368de
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ on:
- 'master'
- 'beta'
- 'alpha'
- 'canary-*'
pull_request: {}

# Cancel any previous run (see: https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#concurrency)
Expand Down
7 changes: 6 additions & 1 deletion release.config.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
module.exports = {
branches: ['master', { name: 'alpha', prerelease: true }, { name: 'beta', prerelease: true }],
branches: [
'master',
{ name: 'alpha', prerelease: true },
{ name: 'beta', prerelease: true },
{ name: 'canary-*', prerelease: true, channel: 'canary' },
],
plugins: [
'@semantic-release/commit-analyzer',
'@semantic-release/release-notes-generator',
Expand Down

1 comment on commit a0368de

@vercel
Copy link

@vercel vercel bot commented on a0368de Jul 3, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.