Skip to content

Commit 171ffc6

Browse files
fix: github workflows
1 parent ae0ec04 commit 171ffc6

File tree

2 files changed

+17
-12
lines changed

2 files changed

+17
-12
lines changed

.github/workflows/release.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,12 @@ jobs:
2626
uses: actions/checkout@v4
2727
with:
2828
fetch-depth: 0
29-
token: ${{ secrets.GITHUB_TOKEN }}
29+
ssh-key: ${{ secrets.DEPLOY_KEY }}
30+
31+
- name: Setup Git
32+
run: |
33+
git config user.name "github-actions[bot]"
34+
git config user.email "github-actions[bot]@users.noreply.github.com"
3035
3136
- name: Setup Node.js
3237
uses: actions/setup-node@v4

.releaserc.json

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -27,17 +27,17 @@
2727
"preset": "conventionalcommits",
2828
"presetConfig": {
2929
"types": [
30-
{"type": "feat", "section": "Features", "hidden": false},
31-
{"type": "fix", "section": "🐛 Bug Fixes", "hidden": false},
32-
{"type": "perf", "section": "Performance Improvements", "hidden": false},
33-
{"type": "revert", "section": "Reverts", "hidden": false},
34-
{"type": "docs", "section": "📚 Documentation", "hidden": false},
35-
{"type": "style", "section": "💎 Styles", "hidden": false},
36-
{"type": "chore", "section": "🔧 Miscellaneous Chores", "hidden": true},
37-
{"type": "refactor", "section": "♻️ Code Refactoring", "hidden": false},
38-
{"type": "test", "section": "Tests", "hidden": false},
39-
{"type": "build", "section": "🏗️ Build System", "hidden": false},
40-
{"type": "ci", "section": "🔄 Continuous Integration", "hidden": false}
30+
{"type": "feat", "section": "Features", "hidden": false},
31+
{"type": "fix", "section": "Bug Fixes", "hidden": false},
32+
{"type": "perf", "section": "Performance Improvements", "hidden": false},
33+
{"type": "revert", "section": "Reverts", "hidden": false},
34+
{"type": "docs", "section": "Documentation", "hidden": false},
35+
{"type": "style", "section": "Styles", "hidden": false},
36+
{"type": "chore", "section": "Miscellaneous Chores", "hidden": true},
37+
{"type": "refactor", "section": "Code Refactoring", "hidden": false},
38+
{"type": "test", "section": "Tests", "hidden": false},
39+
{"type": "build", "section": "Build System", "hidden": false},
40+
{"type": "ci", "section": "Continuous Integration", "hidden": false}
4141
]
4242
}
4343
}

0 commit comments

Comments
 (0)