Skip to content

Commit

Permalink
chore: update release config to include beta branch
Browse files Browse the repository at this point in the history
  • Loading branch information
druhill committed Dec 18, 2023
1 parent de33ab6 commit c8c0016
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/copy-package.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Copy released package to X3
on:
workflow_dispatch:
release:
types: [published]
types: [released]


jobs:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ on:
pull_request:
branches:
- master
- main
- beta
jobs:
run-linters:
name: Run linters
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/semantic-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ on:
push:
branches:
- master
- beta

jobs:
# Builds token library from current data/tokens.json file and releases it.
Expand Down
2 changes: 1 addition & 1 deletion release.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ const CHANGELOG = 'docs/CHANGELOG.md'
const PACKAGE_JSON = 'package.json'

module.exports = {
branches: ['master'],
branches: ['master', {name: 'beta', prerelease: true}],
plugins: [
'@semantic-release/commit-analyzer',
'@semantic-release/release-notes-generator',
Expand Down

0 comments on commit c8c0016

Please sign in to comment.