Skip to content

Commit

Permalink
BREAKING CHANGE: fix release ci/cd
Browse files Browse the repository at this point in the history
  • Loading branch information
tiavina-mika committed Apr 30, 2024
1 parent 3e3f2d2 commit 3bcc3fc
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 31 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,9 @@ on:
branches:
# Change this if your primary branch is not main
- main
- develop

pull_request:
branches:
- main
permissions:
contents: read # for checkout

Expand Down
19 changes: 14 additions & 5 deletions .releaserc
Original file line number Diff line number Diff line change
@@ -1,24 +1,33 @@
{
"branches": [
"master",
"develop"
"master"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/changelog",
{
"changelogFile": "docs/CHANGELOG.md"
"changelogFile": "CHANGELOG.md"
}
],
[
"@semantic-release/git",
{
"assets": ["docs/CHANGELOG.md"]
"assets": ["CHANGELOG.md"]
}
],
"@semantic-release/github"
[
"@semantic-release/github",
{
"assets": [
{
"path": "release/**"
}
]
}
]


]
}
24 changes: 0 additions & 24 deletions test.yml

This file was deleted.

0 comments on commit 3bcc3fc

Please sign in to comment.