Skip to content

Commit

Permalink
feat: try dryrun from v5 branch
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolethoen committed Jul 16, 2024
1 parent 0973672 commit d4e710e
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/check-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ on:
pull_request:
branches:
- main
- v4
- v5
jobs:
call-build-lint-test-workflow:
uses: ./.github/workflows/build-lint-test.yml
4 changes: 2 additions & 2 deletions .github/workflows/promote.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ name: promote
on:
push:
# Sequence of patterns matched against refs/tags
tags:
- v5.*
tags:
- v6.*
jobs:
build-and-promote:
runs-on: ubuntu-latest
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ on:
push:
branches:
- main
- v4
- v5
jobs:
call-build-lint-test-workflow:
uses: ./.github/workflows/build-lint-test.yml
Expand Down
3 changes: 1 addition & 2 deletions packages/module/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,7 @@
},
"homepage": "https://github.com/patternfly/react-data-view#readme",
"publishConfig": {
"access": "public",
"tag": "prerelease"
"access": "public"
},
"dependencies": {
"@patternfly/react-core": "^6.0.0-alpha.69",
Expand Down
10 changes: 7 additions & 3 deletions packages/module/release.config.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
module.exports = {
branches: [ 'do-not-delete', { name: 'main', channel: 'prerelease', prerelease: 'prerelease' } ],
branches: [
'do-not-delete',
{ name: 'main', channel: 'prerelease', prerelease: 'prerelease' },
{ name: 'v5', channel: 'prerelease-v1', range: '1.x' },
],
analyzeCommits: {
preset: 'angular'
},
Expand All @@ -10,5 +14,5 @@ module.exports = {
'@semantic-release/npm'
],
tagFormat: 'prerelease-v${version}',
dryRun: false
};
dryRun: true
};

0 comments on commit d4e710e

Please sign in to comment.