Skip to content

Commit

Permalink
feat: exec & assets
Browse files Browse the repository at this point in the history
  • Loading branch information
sblask committed Apr 23, 2024
1 parent 2a993ef commit 935195c
Showing 1 changed file with 21 additions and 1 deletion.
22 changes: 21 additions & 1 deletion .releaserc.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,27 @@
"@semantic-release/commit-analyzer",
"@semantic-release/npm",
"@semantic-release/release-notes-generator",
"@semantic-release/github"
[
"@semantic-release/exec",
{
"prepareCmd": "./my-build-script.sh ${nextRelease.version}"
}
],
[
"@semantic-release/github",
{
"assets": [
{
"path": "*${nextRelease.version}-chrome.zip",
"label": "Chrome package"
},
{
"path": "*${nextRelease.version}-firefox.zip",
"label": "Firefox package"
}
]
}
]
],
"tagFormat": "${ version }"
}

0 comments on commit 935195c

Please sign in to comment.