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