Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: force yarn install and update release config #156

Merged
merged 1 commit into from
May 26, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
corepack yarn config set enableImmutableInstalls false

- name: Install dependencies
run: corepack yarn install
run: corepack yarn install --force

- name: Building Packages
run: corepack yarn build
Expand Down Expand Up @@ -123,7 +123,7 @@ jobs:
corepack yarn config set enableImmutableInstalls false

- name: Install dependencies
run: corepack yarn install
run: corepack yarn install --force

- name: Normalize Assets
env:
Expand Down
50 changes: 46 additions & 4 deletions .releaserc
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,55 @@
"debug": true,
"plugins": [
["@semantic-release/commit-analyzer", {
"preset": "angular",
"preset": "conventionalcommits",
"releaseRules": [
{"type": "docs", "release": "patch"},
{"type": "refactor", "release": "minor"}
]
{"type": "refactor", "release": "patch"},
{"type": "style", "release": "patch"},
{"scope": "skip", "release": false}
],
"presetConfig": {
"types": [
{"type": "feat", "section": "Features"},
{"type": "feature", "section": "Features"},
{"type": "fix", "section": "Bug Fixes"},
{"type": "perf", "section": "Performance Improvements"},
{"type": "revert", "section": "Reverts"},
{"type": "refactor", "section": "Code Refactoring"},
{"type": "docs", "section": "Documentation", "hidden": true},
{"type": "style", "section": "Styles", "hidden": true},
{"type": "chore", "section": "Miscellaneous Chores", "hidden": true},
{"type": "test", "section": "Tests", "hidden": true},
{"type": "build", "section": "Build System", "hidden": true},
{"type": "ci", "section": "Continuous Integration", "hidden": true}
]
}
}],
["@semantic-release/release-notes-generator", {
"preset": "conventionalcommits",
"releaseRules": [
{"type": "docs", "release": "patch"},
{"type": "refactor", "release": "patch"},
{"type": "style", "release": "patch"},
{"scope": "skip", "release": false}
],
"presetConfig": {
"types": [
{"type": "feat", "section": "Features"},
{"type": "feature", "section": "Features"},
{"type": "fix", "section": "Bug Fixes"},
{"type": "perf", "section": "Performance Improvements"},
{"type": "revert", "section": "Reverts"},
{"type": "refactor", "section": "Code Refactoring"},
{"type": "docs", "section": "Documentation", "hidden": true},
{"type": "style", "section": "Styles", "hidden": true},
{"type": "chore", "section": "Miscellaneous Chores", "hidden": true},
{"type": "test", "section": "Tests", "hidden": true},
{"type": "build", "section": "Build System", "hidden": true},
{"type": "ci", "section": "Continuous Integration", "hidden": true}
]
}
}],
"@semantic-release/release-notes-generator",
[
"@semantic-release/changelog",
{
Expand Down