From 6d449d63c846f06ab9087f8f7e5a62e28bd52e71 Mon Sep 17 00:00:00 2001 From: Sander Declerck Date: Thu, 4 Dec 2025 16:06:48 +0100 Subject: [PATCH] Fix version number when publishing to npmjs --- .github/workflows/build-and-release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-and-release.yml b/.github/workflows/build-and-release.yml index 082ece0..7aa1250 100644 --- a/.github/workflows/build-and-release.yml +++ b/.github/workflows/build-and-release.yml @@ -65,8 +65,8 @@ jobs: - name: Publish to npm run: | - echo "Publishing version ${{ steps.get_version.outputs.tag }} to NPM" - npm publish --workspace=packages/safe-chain --access public --provenance --tag ${{ steps.get_version.outputs.tag }} + echo "Publishing version ${{ needs.set-version.outputs.version }} to NPM" + npm publish --workspace=packages/safe-chain --access public --provenance --tag ${{ needs.set-version.outputs.version }} - name: Download all binary artifacts uses: actions/download-artifact@v4