From f9f892bde1d5dedc3d7c14e1a418cf258addd182 Mon Sep 17 00:00:00 2001 From: Jordan Eldredge Date: Sun, 6 Jul 2025 15:59:58 -0700 Subject: [PATCH] Try to fix npm release --- .github/workflows/ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index dfca3ec4..16d9bcc6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -207,9 +207,10 @@ jobs: fail-on-cache-miss: true - name: Set version if: github.ref == 'refs/heads/master' + working-directory: ./packages/webamp run: | echo "Setting version to 0.0.0-next-${RELEASE_COMMIT_SHA::7}" - pnpm --filter webamp version --new-version 0.0.0-next-${RELEASE_COMMIT_SHA::7} --no-git-tag-version + npm version 0.0.0-next-${RELEASE_COMMIT_SHA::7} --no-git-tag-version env: RELEASE_COMMIT_SHA: ${{ github.sha }} - name: Build release version