diff options
| author | CodeWithShreyans <[email protected]> | 2025-08-29 00:05:50 +0000 |
|---|---|---|
| committer | Mahesh Sanikommmu <[email protected]> | 2025-08-28 18:56:33 -0700 |
| commit | 3976c9b00d3e3367db34d7cab476aa6103c7253e (patch) | |
| tree | 4eac78ce8f0f02e474be2c6c4ec5c8605f0d48ad | |
| parent | ci: temp add debugging to ai-sdk workflow (#392) (diff) | |
| download | supermemory-mahesh/chrome-extension.tar.xz supermemory-mahesh/chrome-extension.zip | |
ci: fix ai-sdk publish (#393)mahesh/chrome-extension
| -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 |