From 11a78f50b2123908ee0a98ab0e9ecab1160fadcf Mon Sep 17 00:00:00 2001 From: naorpeled Date: Sat, 1 Aug 2026 21:28:56 +0300 Subject: [PATCH] fix(ci): create the tarball directory before npm pack npm pack --pack-destination does not create the target directory, so the Pack step failed with ENOENT. --- .github/workflows/pull-request.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index e9117fb..b5d390a 100644 --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -45,6 +45,7 @@ jobs: - name: Pack run: | npm version 0.0.0-ci --no-git-tag-version --allow-same-version + mkdir -p tarball npm pack --pack-destination ./tarball - name: Upload package tarball