fix: .release-it.json

This commit is contained in:
charlesgauthereau
2026-03-06 08:57:11 +01:00
parent 8655b81618
commit 0752b8bf7f
3 changed files with 4 additions and 10 deletions
-1
View File
@@ -42,6 +42,5 @@ jobs:
run: |
git pull origin main
pnpm exec release-it --ci
git push origin --tags
env:
GITHUB_TOKEN: ${{ steps.app-token.outputs.token }}
+2 -2
View File
@@ -31,13 +31,13 @@ jobs:
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
gh release edit ${{ github.ref_name }} --draft=false
gh release edit v${{ github.ref_name }} --draft=false
discord_notification:
needs: docker_publish
uses: ./.github/workflows/discord.yml
with:
discord_title: "New Release: ${{ github.ref_name }}"
discord_title: "New Release: v${{ github.ref_name }}"
discord_color: 3066993
discord_footer: "Portabase"
secrets:
+2 -7
View File
@@ -4,18 +4,13 @@
"commitMessage": "chore: release v${version}",
"requireCleanWorkingDir": true,
"tag": true,
"tagName": "${version}",
"tagName": "v${version}",
"push": true
},
"github": {
"release": true,
"tokenRef": "GITHUB_TOKEN",
"draft": true,
"tagName": "${version}",
"push": true
},
"hooks": {
"after:git:push": "sleep 5"
"tokenRef": "GITHUB_TOKEN"
},
"plugins": {
"@release-it/conventional-changelog": {