From 10a3b63a5f254f7c59a92aadd7a472e1bb6eb794 Mon Sep 17 00:00:00 2001 From: Sander Declerck Date: Thu, 4 Dec 2025 15:54:26 +0100 Subject: [PATCH] Add --tag to npm publish --- .github/workflows/build-and-release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build-and-release.yml b/.github/workflows/build-and-release.yml index 95a6c91..082ece0 100644 --- a/.github/workflows/build-and-release.yml +++ b/.github/workflows/build-and-release.yml @@ -66,7 +66,7 @@ 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 + npm publish --workspace=packages/safe-chain --access public --provenance --tag ${{ steps.get_version.outputs.tag }} - name: Download all binary artifacts uses: actions/download-artifact@v4