👷 releases and semver tags
Some checks failed
Semver / semver (push) Failing after 30s
Build Docker Image / build-image (push) Successful in 55s

This commit is contained in:
Rose 2024-10-16 14:32:04 -05:00
parent 0206511463
commit ee813459c7
No known key found for this signature in database
2 changed files with 4 additions and 2 deletions

View file

@ -34,3 +34,5 @@ jobs:
release-dir: .ci
release-notes: ${{ steps.semantic.outputs.NOTES }}
token: ${{secrets.FIXBLUESKY_RELEASE_TOKEN}}
tag: ${{steps.semantic.outputs.VERSION}}
title: ${{steps.semantic.outputs.VERSION}}

View file

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