From 7a8761dc003fc50541af3fc425c882be5c99697e Mon Sep 17 00:00:00 2001 From: zhouwang <184232456@qq.com> Date: Fri, 17 Jul 2026 22:04:33 +0800 Subject: [PATCH] Fix npm artifact paths --- .github/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 7097a8a..4bbb378 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -60,7 +60,7 @@ jobs: pnpm --dir packages/cli pack --pack-destination "$GITHUB_WORKSPACE/artifacts" - name: Publish core if: steps.registry.outputs.core_exists != 'true' - run: npm publish artifacts/bugbundle-core-*.tgz --access public + run: npm publish ./artifacts/bugbundle-core-*.tgz --access public - name: Publish CLI if: steps.registry.outputs.cli_exists != 'true' - run: npm publish artifacts/bugbundle-[0-9]*.tgz --access public + run: npm publish ./artifacts/bugbundle-[0-9]*.tgz --access public