Skip to content

Commit

Permalink
switched github npm release action back to use node
Browse files Browse the repository at this point in the history
  • Loading branch information
marcus-wishes committed Jan 7, 2025
1 parent 91a33cf commit e2675de
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2,076 deletions.
9 changes: 4 additions & 5 deletions .github/workflows/default.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "21"
- uses: oven-sh/setup-bun@v2
node-version: "22"

- name: Get release version
id: release
Expand All @@ -71,12 +70,12 @@ jobs:
run: npm version --no-git-tag-version ${{ steps.release.outputs.short_version }}

- name: Install Dependencies
run: bun install
run: npm install

- name: Build Release
run: bun run build:lib
run: npm run build:lib

- name: Publish to npmjs
run: bun publish --access public
run: npm publish --access public
env:
NPM_CONFIG_TOKEN: ${{secrets.NPM_PUBLISH_TOKEN}}
Loading

0 comments on commit e2675de

Please sign in to comment.