generated from cheqd/.github
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: Make release process as in Credential-Service (#237)
* Bump all semantic-related packages * Fix package-lock.json * Debug * Debug * Revert it back * Make the release process as in credential-service
- Loading branch information
Andrew Nikitin
authored
Oct 24, 2023
1 parent
c108a58
commit 17a5c99
Showing
5 changed files
with
68 additions
and
81 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,56 +1,60 @@ | ||
{ | ||
"branches": [ | ||
"main", | ||
{ | ||
"name": "develop", | ||
"channel": "beta", | ||
"prerelease": true | ||
} | ||
], | ||
"tagFormat": "${version}", | ||
"ci": true, | ||
"preset": "conventionalcommits", | ||
"plugins": [ | ||
[ "@semantic-release/commit-analyzer", | ||
{ | ||
"parserOpts": "./.github/linters/.commitlint.rules.js", | ||
"releaseRules": [ | ||
{ "breaking": true, "release": "major" }, | ||
{ "type": "feat", "release": "minor" }, | ||
{ "type": "fix", "release": "patch" }, | ||
{ "type": "perf", "release": "patch" }, | ||
{ "type": "build", "release": "patch" }, | ||
{ "scope": "security", "release": "patch" }, | ||
{ "type": "chore", "release": false }, | ||
{ "type": "ci", "release": false }, | ||
{ "type": "docs", "release": false }, | ||
{ "type": "refactor", "release": false }, | ||
{ "type": "revert", "release": false }, | ||
{ "type": "style", "release": false }, | ||
{ "type": "test", "release": false }, | ||
{ "scope": "no-release", "release": false }, | ||
{ "scope": "release", "release": "patch" } | ||
], | ||
"presetConfig": true | ||
} | ||
], | ||
[ "@semantic-release/release-notes-generator", | ||
{ | ||
"presetConfig": true | ||
} | ||
], | ||
[ "@semantic-release/changelog", | ||
{ | ||
"changelogTitle": "# Changelog" | ||
} | ||
], | ||
"@semantic-release/npm", | ||
[ "@semantic-release/git", | ||
{ | ||
"assets": [ "package.json", "CHANGELOG.md" ], | ||
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}" | ||
} | ||
], | ||
"@semantic-release/github" | ||
] | ||
} | ||
"branches": [ | ||
"main", | ||
{ | ||
"name": "develop", | ||
"channel": "beta", | ||
"prerelease": true | ||
} | ||
], | ||
"tagFormat": "${version}", | ||
"ci": true, | ||
"preset": "conventionalcommits", | ||
"plugins": [ | ||
[ | ||
"@semantic-release/commit-analyzer", | ||
{ | ||
"parserOpts": "./.github/linters/.commitlint.rules.js", | ||
"releaseRules": [ | ||
{ "breaking": true, "release": "major" }, | ||
{ "type": "feat", "release": "minor" }, | ||
{ "type": "fix", "release": "patch" }, | ||
{ "type": "perf", "release": "patch" }, | ||
{ "type": "build", "release": "patch" }, | ||
{ "scope": "security", "release": "patch" }, | ||
{ "type": "chore", "release": false }, | ||
{ "type": "ci", "release": false }, | ||
{ "type": "docs", "release": false }, | ||
{ "type": "refactor", "release": false }, | ||
{ "type": "revert", "release": false }, | ||
{ "type": "style", "release": false }, | ||
{ "type": "test", "release": false }, | ||
{ "scope": "no-release", "release": false }, | ||
{ "scope": "release", "release": "patch" } | ||
], | ||
"presetConfig": true | ||
} | ||
], | ||
[ | ||
"@semantic-release/release-notes-generator", | ||
{ | ||
"presetConfig": true | ||
} | ||
], | ||
[ | ||
"@semantic-release/changelog", | ||
{ | ||
"changelogTitle": "# Changelog" | ||
} | ||
], | ||
"@semantic-release/npm", | ||
[ | ||
"@semantic-release/git", | ||
{ | ||
"assets": ["package.json", "CHANGELOG.md"], | ||
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}" | ||
} | ||
], | ||
"@semantic-release/github" | ||
] | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters