fixbluesky/release.config.mjs
Rose f9474ceaf3
Some checks failed
Semver / semver (push) Failing after 25s
Build Docker Image / build-image (push) Successful in 55s
💚 gha annoys me so much
2024-10-16 14:42:37 -05:00

40 lines
890 B
JavaScript

/**
* @type {import('semantic-release').GlobalConfig}
*/
export default {
branches: ["main", { name: "devel", prerelease: true }],
plugins: [
[
"semantic-release-gitmoji",
{
releaseRules: {
major: [":boom:"],
minor: [":sparkles:"],
patch: [
":bug:",
":ambulance:",
":lipstick:",
":lock:",
":zap:",
":chart_with_upwards_trend:",
":globe_with_meridians:",
":alien:",
":wheelchair:",
":mag:",
":children_crossing:",
":speech_balloon:",
":iphone:",
":pencil2:",
":bento:",
],
},
},
],
[
"@semantic-release/exec",
{
successCmd: "echo 'RELEASE=${nextRelease}' >> $GITHUB_OUTPUT",
},
],
],
};