From 280587eb9204927930ae2fe68225a4a0467a756d Mon Sep 17 00:00:00 2001 From: Pekka Enberg Date: Fri, 27 Jun 2025 15:41:36 +0300 Subject: [PATCH] github: Fix JavaScript publish pipeline --- .github/workflows/napi.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/napi.yml b/.github/workflows/napi.yml index 7dc3ab1a1..095c6efaa 100644 --- a/.github/workflows/napi.yml +++ b/.github/workflows/napi.yml @@ -220,11 +220,11 @@ jobs: - name: Publish run: | npm config set provenance true - if git log -1 --pretty=%B | grep "^Limbo [0-9]\+\.[0-9]\+\.[0-9]\+$"; + if git log -1 --pretty=%B | grep "^Turso [0-9]\+\.[0-9]\+\.[0-9]\+$"; then echo "//registry.npmjs.org/:_authToken=$NPM_TOKEN" >> ~/.npmrc npm publish --access public - elif git log -1 --pretty=%B | grep "^Limbo [0-9]\+\.[0-9]\+\.[0-9]\+"; + elif git log -1 --pretty=%B | grep "^Turso [0-9]\+\.[0-9]\+\.[0-9]\+"; then echo "//registry.npmjs.org/:_authToken=$NPM_TOKEN" >> ~/.npmrc npm publish --tag next --access public