Skip to content

Commit

Permalink
Merge pull request #2 from DISIC/dev
Browse files Browse the repository at this point in the history
fix: adding release file
  • Loading branch information
HamzaKhait authored Mar 26, 2024
2 parents bfce2d4 + 203d233 commit 98c304e
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions release.config.cjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
// configuration file for semantic-release
// this is file is used by github actions
module.exports = {
branches: [
'main',
{
name: 'preprod',
prerelease: true,
},
],
plugins: [
'@semantic-release/commit-analyzer',
'@semantic-release/release-notes-generator',
[
'@semantic-release/git',
{
message:
'chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}',
},
],
[
'@semantic-release/github',
{
assets: ['jmmc.tar.gz'],
message:
'chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}',
},
],
],
};

0 comments on commit 98c304e

Please sign in to comment.