Skip to content

Commit 017a7cd

Browse files
committed
feat: migrate to bun
1 parent 96a4776 commit 017a7cd

File tree

3 files changed

+5
-12
lines changed

3 files changed

+5
-12
lines changed

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,10 @@ jobs:
2828
bun-version: latest
2929

3030
- name: Install dependencies
31-
run: npm install
31+
run: bun install
3232

3333
- name: Release
3434
env:
3535
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
36-
NPM_CONFIG_PROVENANCE: true
37-
run: npx semantic-release
36+
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
37+
run: bunx semantic-release

.releaserc.js

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -34,13 +34,7 @@ module.exports = {
3434
},
3535
},
3636
],
37-
[
38-
'@semantic-release/npm',
39-
{
40-
npmPublish: true,
41-
provenance: true,
42-
},
43-
],
37+
'@semantic-release/npm',
4438
'@semantic-release/github',
4539
[
4640
'@semantic-release/git',

package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,7 @@
22
"name": "@riligar/agents-kit",
33
"version": "1.1.0",
44
"publishConfig": {
5-
"access": "public",
6-
"registry": "https://registry.npmjs.org/"
5+
"access": "public"
76
},
87
"description": "RiLiGar Agents Kit - Curated collection of AI Agent templates, skills, and rules designed to standardize and supercharge your AI-driven development workflows.",
98
"main": "bin/cli.js",

0 commit comments

Comments
 (0)