fixbluesky/release.config.mjs
Rose 999980c055
Some checks failed
Semver / semver (push) Failing after 30s
Build Docker Image / build-image (push) Successful in 57s
💚 progress is being made
2024-10-16 14:58:43 -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",
},
],
],
};