From e84be4d89118406fd10c5be757c73b8cc544ff05 Mon Sep 17 00:00:00 2001 From: "Azat S." Date: Wed, 23 Oct 2024 13:51:52 +0300 Subject: [PATCH] fix: replace pnpm with npm for package publish --- .github/workflows/release.yml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 07494c6..0557f8b 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -174,17 +174,17 @@ jobs: - name: Set Execute Permissions on Binaries run: | - chmod +x ./bin/linux/x64/todoctor || true - chmod +x ./bin/linux/arm64/todoctor || true - chmod +x ./bin/macos/x64/todoctor || true - chmod +x ./bin/macos/arm64/todoctor || true + chmod +x ./bin/linux/x64/todoctor + chmod +x ./bin/linux/arm64/todoctor + chmod +x ./bin/macos/x64/todoctor + chmod +x ./bin/macos/arm64/todoctor - name: Verify Binary Permissions run: | - ls -l ./bin/linux/x64/todoctor || true - ls -l ./bin/linux/arm64/todoctor || true - ls -l ./bin/macos/x64/todoctor || true - ls -l ./bin/macos/arm64/todoctor || true + ls -l ./bin/linux/x64/todoctor + ls -l ./bin/linux/arm64/todoctor + ls -l ./bin/macos/x64/todoctor + ls -l ./bin/macos/arm64/todoctor - name: Create GitHub Release run: pnpm run ci:changelog @@ -198,4 +198,4 @@ jobs: run: pnpm run ci:clear - name: Publish to NPM - run: pnpm publish --access public --no-git-checks --provenance + run: npm publish --access public --no-git-checks --provenance