Skip to content

Commit

Permalink
fix: replace pnpm with npm for package publish
Browse files Browse the repository at this point in the history
  • Loading branch information
azat-io committed Oct 23, 2024
1 parent 2c41396 commit e84be4d
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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

0 comments on commit e84be4d

Please sign in to comment.