Skip to content

Commit

Permalink
chore(CI-release): Enable v5 release
Browse files Browse the repository at this point in the history
BREAKING CHANGE: beginning of breaking alpha release
  • Loading branch information
wise-king-sullyman committed May 19, 2023
1 parent 69e904a commit e4fff3e
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 5 deletions.
4 changes: 2 additions & 2 deletions packages/module/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@patternfly/quickstarts",
"version": "2.3.3",
"version": "5.0.0",
"description": "PatternFly quick starts",
"files": [
"src",
Expand All @@ -11,7 +11,7 @@
"types": "dist/index.d.ts",
"publishConfig": {
"access": "public",
"tag": "prerelease"
"tag": "alpha"
},
"repository": {
"type": "git",
Expand Down
16 changes: 13 additions & 3 deletions packages/module/release.config.js
Original file line number Diff line number Diff line change
@@ -1,13 +1,23 @@
module.exports = {
branches: [{ name: 'main', channel: 'prerelease' }],
branches: [
{ name: 'v4', channel: 'prerelease' },
{ name: 'main', channel: 'alpha', prerelease: 'alpha' },
],
analyzeCommits: {
preset: 'angular',
},
plugins: [
'@semantic-release/commit-analyzer',
[
'@semantic-release/commit-analyzer',
{
preset: 'angular',
releaseRules: [{ type: 'chore', scope: 'CI-release', release: 'patch' }],
},
],
'@semantic-release/release-notes-generator',
'@semantic-release/github',
'@semantic-release/npm',
],
tagFormat: 'v${version}',
tagFormat: 'prerelease-v${version}',
dryRun: true,
};

0 comments on commit e4fff3e

Please sign in to comment.