Compare commits
2 commits
48872e6544
...
5b3f35f024
Author | SHA1 | Date | |
---|---|---|---|
5b3f35f024 | |||
eb2e985f20 |
2 changed files with 54 additions and 1 deletions
|
@ -11,13 +11,20 @@ jobs:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
|
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
|
||||||
|
|
||||||
- uses: actions/setup-node@b39b52d1213e96004bfcb1c61a8a6fa8ab84f3e8 # v4.0.1
|
- name: setup node
|
||||||
|
uses: actions/setup-node@b39b52d1213e96004bfcb1c61a8a6fa8ab84f3e8 # v4.0.1
|
||||||
with:
|
with:
|
||||||
node-version: 20
|
node-version: 20
|
||||||
|
|
||||||
- name: semantic release
|
- name: semantic release
|
||||||
shell: bash
|
shell: bash
|
||||||
run: |
|
run: |
|
||||||
|
npm install \
|
||||||
|
@semantic-release/gitea \
|
||||||
|
conventional-changelog-conventionalcommits \
|
||||||
|
@semantic-release/git \
|
||||||
|
@semantic-release/changelog
|
||||||
|
|
||||||
npx semantic-release
|
npx semantic-release
|
||||||
|
|
||||||
# TODO extract dedicated action
|
# TODO extract dedicated action
|
||||||
|
|
46
.releaserc.js
Normal file
46
.releaserc.js
Normal file
|
@ -0,0 +1,46 @@
|
||||||
|
module.exports = {
|
||||||
|
"branches": [
|
||||||
|
"main"
|
||||||
|
],
|
||||||
|
"plugins": [
|
||||||
|
"@semantic-release/commit-analyzer",
|
||||||
|
[
|
||||||
|
"@semantic-release/release-notes-generator",
|
||||||
|
{
|
||||||
|
"linkCompare": true,
|
||||||
|
"linkReferences": true,
|
||||||
|
"writerOpts": {
|
||||||
|
"groupBy": "type",
|
||||||
|
"commitGroupsSort": "title",
|
||||||
|
"commitsSort": "header"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
[
|
||||||
|
"@semantic-release/changelog",
|
||||||
|
{
|
||||||
|
"changelogFile": "CHANGELOG.md"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
[
|
||||||
|
"@semantic-release/git",
|
||||||
|
{
|
||||||
|
"message": "chore(release): ${nextRelease.version}",
|
||||||
|
"assets": [
|
||||||
|
"CHANGELOG.md"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
[
|
||||||
|
"@semantic-release/gitea",
|
||||||
|
{}
|
||||||
|
]
|
||||||
|
],
|
||||||
|
"preset": "conventionalcommits",
|
||||||
|
"parserOpts": {
|
||||||
|
"issuePrefixes": [
|
||||||
|
"#"
|
||||||
|
],
|
||||||
|
"issueUrlFormat": `${GITHUB_SERVER_URL}/${GITHUB_REPOSITORY}/issues/{{id}}`
|
||||||
|
}
|
||||||
|
}
|
Loading…
Add table
Reference in a new issue