Skip to content

Commit

Permalink
chore(ci): revert to angular commit messages (#219)
Browse files Browse the repository at this point in the history
  • Loading branch information
IvanJosipovic committed Sep 2, 2023
1 parent 7c68fe0 commit 1e484ad
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 22 deletions.
3 changes: 0 additions & 3 deletions .github/workflows/cicd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,9 +54,6 @@ jobs:
- name: Semantic Release
uses: cycjimmy/semantic-release-action@v4
id: semantic
with:
extra_plugins: |
conventional-changelog-conventionalcommits
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

Expand Down
52 changes: 33 additions & 19 deletions .releaserc.json
Original file line number Diff line number Diff line change
@@ -1,22 +1,36 @@
{
"branches": [
"master",
{
"name": "alpha",
"prerelease": true
},
{
"name": "beta",
"prerelease": true
}
"branches": [
"master",
{
"name": "beta",
"prerelease": true
},
{
"name": "alpha",
"prerelease": true
}
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/changelog",
{
"changelogFile": "CHANGELOG.md"
}
],
"plugins": [
["@semantic-release/commit-analyzer", {
"preset": "conventionalcommits"
}],
["@semantic-release/release-notes-generator", {
"preset": "conventionalcommits"
}],
"@semantic-release/github"
[
"@semantic-release/github",
{
"assets": [
{
"path": "CHANGELOG.md"
},
{
"path": "src/**/*.nupkg"
}
]
}
]
}
]
}

0 comments on commit 1e484ad

Please sign in to comment.