💚 maybe now everything works?
Some checks failed
Build Docker Image / build-image (push) Failing after 35s
Semver / semver (push) Failing after 33s

This commit is contained in:
Rose 2024-10-16 12:56:16 -05:00
parent 3fceb35f79
commit 345da2b68e
No known key found for this signature in database
5 changed files with 161 additions and 12 deletions

View file

@ -2,7 +2,7 @@
* @type {import('semantic-release').GlobalConfig}
*/
export default {
branches: ["main", { name: "devel", prerelease: true }],
branches: ["main", { name: "devel" }],
plugins: [
[
"semantic-release-gitmoji",
@ -30,6 +30,12 @@ export default {
},
},
],
"@semantic-release/github",
[
"@semantic-release/exec",
{
successCmd:
"echo 'NOTES=${nextRelease.notes}' >> $GITHUB_OUTPUT",
},
],
],
};