diff options
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/publish-ai-sdk.yml | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/.github/workflows/publish-ai-sdk.yml b/.github/workflows/publish-ai-sdk.yml index 4c812839..3f69b421 100644 --- a/.github/workflows/publish-ai-sdk.yml +++ b/.github/workflows/publish-ai-sdk.yml @@ -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 }}
\ No newline at end of file |