From fcf597d581291e6073f6a081b4832f1ff44efaac Mon Sep 17 00:00:00 2001 From: Sree Narayanan Date: Fri, 10 Jul 2026 13:28:32 +0400 Subject: [PATCH] fix npm publish tarball path resolution --- .github/workflows/publish.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 3720908..34e82ea 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -177,8 +177,8 @@ jobs: printf 'Both packages are already published at %s; skipping npm publication.\n' "${INPUT_VERSION}" else - npm publish "release-artifacts/sideffect-${INPUT_VERSION}.tgz" --provenance --tag "${NPM_TAG}" --ignore-scripts - npm publish "release-artifacts/sideffect-lint-${INPUT_VERSION}.tgz" --provenance --tag "${NPM_TAG}" --ignore-scripts + npm publish "./release-artifacts/sideffect-${INPUT_VERSION}.tgz" --provenance --tag "${NPM_TAG}" --ignore-scripts + npm publish "./release-artifacts/sideffect-lint-${INPUT_VERSION}.tgz" --provenance --tag "${NPM_TAG}" --ignore-scripts fi release: