From a981935fd16e2f775600f99e80a02ca01609e699 Mon Sep 17 00:00:00 2001 From: Nate Schmitz Date: Tue, 11 Jun 2024 11:58:45 -0700 Subject: [PATCH] release: Publish the NPM release from the correct working directory. PiperOrigin-RevId: 642344525 --- .github/workflows/publish-to-npm.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish-to-npm.yml b/.github/workflows/publish-to-npm.yml index 8c1450c..daf175a 100644 --- a/.github/workflows/publish-to-npm.yml +++ b/.github/workflows/publish-to-npm.yml @@ -16,7 +16,7 @@ jobs: registry-url: https://registry.npmjs.org/ - run: | cd javascript/ - npm ci - - run: npm publish + npm i + npm publish env: NODE_AUTH_TOKEN: ${{secrets.NPM_API_TOKEN}}