From 5e43a9ddcfca1c0f33ec2e9cbd5ab77b33a291da Mon Sep 17 00:00:00 2001 From: Eduardo San Martin Morote Date: Thu, 11 Dec 2025 15:52:34 +0100 Subject: [PATCH] ci: fix --- .github/workflows/release.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 8b612966..e20f81af 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -13,6 +13,7 @@ name: Publish to npm # Update this file: # - use environment if set # - Adapt the if condition that prevents running on forks +# - update PACKAGE_PATH="." if package is not at root # - Update the MAP variable to match your packages on: @@ -54,7 +55,7 @@ jobs: if [[ "$TAG" =~ ^v[0-9] ]]; then # Main package PKG_NAME="
" - PACKAGE_PATH="." + PACKAGE_PATH="packages/router" GIT_DESCRIBE_MATCH="v*" else # Scoped package: extract prefix before last @ -- 2.47.3