Skip to content

Commit

Permalink
Merge pull request #88 from ali-zahedi/fix/githubaction
Browse files Browse the repository at this point in the history
fix!: releaserc!
  • Loading branch information
ali-zahedi authored Mar 27, 2024
2 parents 2f29e74 + 52f58ee commit 64133cc
Showing 1 changed file with 22 additions and 13 deletions.
35 changes: 22 additions & 13 deletions .releaserc.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,22 @@
plugins:
- "@semantic-release/commit-analyzer"
- '@semantic-release/release-notes-generator'
- - '@semantic-release/exec'
- verifyReleaseCmd: 'echo ${nextRelease.version} > VERSION.txt'
prepareCmd: 'echo ${nextRelease.version} > VERSION.txt'
- - '@semantic-release/changelog'
- changelogFile: CHANGELOG.md
- "@semantic-release/gitlab"
branches:
- "master"
- name: "develop"
prerelease: "alpha"
---

{
"plugins": [
"@semantic-release/commit-analyzer",
[
"@semantic-release/exec",
{
"verifyReleaseCmd": "echo ${nextRelease.version} > VERSION.txt",
"prepareCmd": "echo ${nextRelease.version} > VERSION.txt"
}
],
"@semantic-release/github"
],
"branches": [
"main",
{
"name": "develop",
"prerelease": "alpha"
}
]
}

0 comments on commit 64133cc

Please sign in to comment.