From bf25bc22e99f48883aaaf071dfdc563b6a45a038 Mon Sep 17 00:00:00 2001 From: Alexander Dahmen Date: Fri, 12 Dec 2025 13:37:25 +0100 Subject: [PATCH] chore(ci): Use npm publish command directly instead of using the action Signed-off-by: Alexander Dahmen --- .github/workflows/release.yaml | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 25471ec..ecd54dd 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -94,11 +94,8 @@ jobs: password: ${{ env.PYPI_PASSWORD }} packages_dir: ${{github.workspace}}/sdk/python/bin/dist - if: ${{ matrix.language == 'nodejs' && env.PUBLISH_NPM == 'true' }} - uses: JS-DevTools/npm-publish@7f8fe47b3bea1be0c3aec2b717c5ec1f3e03410b # tag=v4.1.1 - with: - access: "public" - package: ${{github.workspace}}/sdk/nodejs/bin - provenance: true + run: | + npm publish ${{github.workspace}}/sdk/nodejs/bin --access public - if: ${{ matrix.language == 'dotnet' && env.PUBLISH_NUGET == 'true' }} name: publish nuget package run: |