Skip to content

Commit 7496a2b

Browse files
committed
fix: updated with code to release patch release.
1 parent 1e64d20 commit 7496a2b

File tree

2 files changed

+8
-9
lines changed

2 files changed

+8
-9
lines changed

packages/module/package.json

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@patternfly/quickstarts",
3-
"version": "6.0.0-prerelease.0",
3+
"version": "6.2.0",
44
"description": "PatternFly quick starts",
55
"files": [
66
"src",
@@ -10,8 +10,7 @@
1010
"module": "dist/index.es.js",
1111
"types": "dist/index.d.ts",
1212
"publishConfig": {
13-
"access": "public",
14-
"tag": "prerelease"
13+
"access": "public"
1514
},
1615
"repository": {
1716
"type": "git",

packages/module/release.config.js

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ module.exports = {
22
branches: [
33
'do-not-delete',
44
{ name: 'main', channel: 'prerelease', prerelease: 'prerelease' },
5-
{ name: '6.2.x', channel: 'prerelease-bugfix', range: '6.2.x' },
5+
{ name: 'v6', channel: 'prerelease-v6', range: '6.x' },
66
],
77
analyzeCommits: {
88
preset: 'angular',
@@ -13,15 +13,15 @@ module.exports = {
1313
{
1414
preset: 'angular',
1515
releaseRules: [
16-
{ type: 'feat', release: 'patch' },
17-
{ type: 'fix', release: 'patch' },
16+
{ type: 'chore', scope: 'deps', release: 'patch' },
17+
{ type: 'chore', scope: 'ci-release', release: 'patch' },
1818
],
1919
},
2020
],
2121
'@semantic-release/release-notes-generator',
2222
'@semantic-release/github',
23-
['@semantic-release/npm', { pkgRoot: 'dist' }],
23+
'@semantic-release/npm',
2424
],
25-
tagFormat: 'patch-v${version}',
26-
dryRun: false,
25+
tagFormat: 'v${version}',
26+
dryRun: true
2727
};

0 commit comments

Comments
 (0)