From c846bbd75f909e7a4deab777e09bcab42d77aa52 Mon Sep 17 00:00:00 2001 From: Ben White Date: Mon, 29 Jul 2024 13:21:47 +0200 Subject: [PATCH] fix(cdp): Hogvm publish workflow (#24044) --- .github/workflows/release-hogvm.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/release-hogvm.yml b/.github/workflows/release-hogvm.yml index 37494d6148f74..3d173bcca4591 100644 --- a/.github/workflows/release-hogvm.yml +++ b/.github/workflows/release-hogvm.yml @@ -31,6 +31,7 @@ jobs: if: steps.check-package-version.outputs.is-new-version == 'true' with: node-version: 18.12.1 + registry-url: https://registry.npmjs.org cache: pnpm cache-dependency-path: hogvm/typescript/pnpm-lock.yaml @@ -45,9 +46,7 @@ jobs: - name: Publish the package in the npm registry id: publish-package if: steps.check-package-version.outputs.is-new-version == 'true' - working-directory: run: | pnpm publish --access public --tag latest env: NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} - VERSION: ${{ steps.check-package-version.outputs.committed-version }}