Use new build scripts in CI

This commit is contained in:
Nikita Karamov 2024-02-05 22:08:14 +01:00
parent abd5993b64
commit 0343314fda
No known key found for this signature in database
GPG Key ID: 41D6F71EE78E77CD
2 changed files with 2 additions and 2 deletions

View File

@ -28,7 +28,7 @@ jobs:
- name: Install dependencies
run: pnpm install --ignore-scripts
- name: Build
run: pnpm run build
run: script/build
- name: Publish to NPM (with provenance)
run: pnpm publish --no-git-checks --access public --tag ${{ github.event.release.prerelease && 'next' || 'latest' }}
env:

View File

@ -30,4 +30,4 @@ jobs:
# - name: Lint
# run: pnpm run lint
- name: Build
run: pnpm run build
run: script/build