Skip to content

Commit

Permalink
Fix NPM publishing
Browse files Browse the repository at this point in the history
  • Loading branch information
chasegiunta authored Sep 23, 2024
1 parent bc57e14 commit e68377d
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,16 +14,21 @@ jobs:
bun-version: latest
- run: bun install
- run: bun run build
- uses: actions/setup-node@v4
- name: Upload build artifact
uses: actions/upload-artifact@v3
with:
node-version: "16"
registry-url: "https://registry.npmjs.org"
name: build
path: dist

publish-npm:
needs: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Download build artifact
uses: actions/download-artifact@v3
with:
name: build
- uses: actions/setup-node@v4
with:
node-version: 20
Expand Down

0 comments on commit e68377d

Please sign in to comment.