diff options
| author | CodeWithShreyans <[email protected]> | 2025-08-29 00:05:50 +0000 |
|---|---|---|
| committer | CodeWithShreyans <[email protected]> | 2025-08-29 00:05:50 +0000 |
| commit | 2a8a97ee988c616aca105cb6cad3db2ba347bbc8 (patch) | |
| tree | 0ed2af1df0a528575b7db588685b37b265540d8b /.github/workflows | |
| parent | ci: temp add debugging to ai-sdk workflow (#392) (diff) | |
| download | supermemory-2a8a97ee988c616aca105cb6cad3db2ba347bbc8.tar.xz supermemory-2a8a97ee988c616aca105cb6cad3db2ba347bbc8.zip | |
ci: fix ai-sdk publish (#393)shreyans/08-29-ci_fix_ai-sdk_publish
Diffstat (limited to '.github/workflows')
| -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 |