Skip to content

Commit

Permalink
[fix] Command bug of Type Package publishing
Browse files Browse the repository at this point in the history
  • Loading branch information
TechQuery committed Sep 16, 2023
1 parent 4601dd9 commit 26f21a3
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/publish-type.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ jobs:
node-version: 18
registry-url: https://npm.pkg.github.com
cache: pnpm
- name: Install Dependencies
run: cd type/ && pnpm i

- name: Build & Publish
run: npm publish
- name: Install, Build & Publish
run: |
cd type/
pnpm i
npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 26f21a3

Please sign in to comment.