Skip to content

Commit

Permalink
fix: release.yml without build package
Browse files Browse the repository at this point in the history
  • Loading branch information
YuChunTsao committed Oct 30, 2023
1 parent 3f48882 commit 3be8599
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,11 @@ jobs:
with:
node-version: ${{ matrix.node-version }}
cache: "pnpm"
- name: Install dependencies
run: pnpm install
- name: Release
- name: Install dependencies and build
run: |
pnpm install
pnpm run release
- name: Publish
env:
GITHUB_TOKEN: ${{ secrets.DEPLOY_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
Expand Down

0 comments on commit 3be8599

Please sign in to comment.