Skip to content

Commit

Permalink
chore: fix github actions not adding tgz
Browse files Browse the repository at this point in the history
  • Loading branch information
ImLunaHey committed Sep 21, 2023
1 parent 74032dc commit 2f39b16
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,11 +44,8 @@ jobs:
with:
bun-version: latest

- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 'lts/*'
registry-url: 'https://registry.npmjs.org'
- name: Install packages
run: bun i

- name: Set git email
run: git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com"
Expand Down Expand Up @@ -81,6 +78,12 @@ jobs:
toTag: ${{ steps.previous_tag.outputs.previous_tag }}
writeToFile: false

- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 'lts/*'
registry-url: 'https://registry.npmjs.org'

- name: Publish to NPM
run: npm publish --access public
env:
Expand Down

0 comments on commit 2f39b16

Please sign in to comment.