From 70d7f13f9d102a5afab9414b3ad936267d8556a7 Mon Sep 17 00:00:00 2001 From: David Cramer Date: Tue, 3 Feb 2026 14:33:49 -0800 Subject: [PATCH] fix(release): Upload npm tarball artifact during CI Craft's npm target expects build artifacts to be available. Add pnpm pack and artifact upload steps to CI so Craft can find and publish the package during release. Co-Authored-By: Claude Haiku 4.5 --- .github/workflows/ci.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8bc0cc5..1fbcb08 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -28,3 +28,10 @@ jobs: - run: pnpm test - run: pnpm build - run: pnpm build:action + + - run: pnpm pack + + - uses: actions/upload-artifact@v4 + with: + name: ${{ github.sha }} + path: "*.tgz"