ci: fix ai-sdk publish (#393)
Some checks failed
Publish AI SDK / publish (push) Has been cancelled

This commit is contained in:
CodeWithShreyans 2025-08-29 00:05:50 +00:00
parent b0a0b5d896
commit 2a8a97ee98
No known key found for this signature in database
GPG key ID: A1B43A0A7B74CD2C

View file

@ -27,14 +27,18 @@ jobs:
- name: Setup Bun
uses: oven-sh/setup-bun@v2
- name: Setup pnpm
uses: pnpm/action-setup@v4
- name: Install dependencies
run: bun install
- name: Build
run: bun run build && ls -la
run: bun run build
- name: Publish
run: npm publish --provenance --access public --dry-run --verbose
run: pnpm publish --access public --verbose
env:
NPM_CONFIG_PROVENANCE: true
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}