From 4f2e9d75ec3e9563fedec310017b658d5ce40180 Mon Sep 17 00:00:00 2001 From: alpha Date: Mon, 1 Jun 2026 23:13:33 +0800 Subject: [PATCH] fix(release): publish npm packages from local paths --- .github/workflows/release.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 271f97f0..fa0dd4c6 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -246,16 +246,16 @@ jobs: npm pack ./npm/ok --dry-run - name: Publish @openkeyring/ok-darwin-arm64 - run: npm publish npm/ok-darwin-arm64 + run: npm publish ./npm/ok-darwin-arm64 env: NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} - name: Publish @openkeyring/ok-darwin-x64 - run: npm publish npm/ok-darwin-x64 + run: npm publish ./npm/ok-darwin-x64 env: NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} - name: Publish @openkeyring/ok - run: npm publish npm/ok + run: npm publish ./npm/ok env: NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}