Skip to content

Commit e84be4d

Browse files
committed
fix: replace pnpm with npm for package publish
1 parent 2c41396 commit e84be4d

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

.github/workflows/release.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -174,17 +174,17 @@ jobs:
174174

175175
- name: Set Execute Permissions on Binaries
176176
run: |
177-
chmod +x ./bin/linux/x64/todoctor || true
178-
chmod +x ./bin/linux/arm64/todoctor || true
179-
chmod +x ./bin/macos/x64/todoctor || true
180-
chmod +x ./bin/macos/arm64/todoctor || true
177+
chmod +x ./bin/linux/x64/todoctor
178+
chmod +x ./bin/linux/arm64/todoctor
179+
chmod +x ./bin/macos/x64/todoctor
180+
chmod +x ./bin/macos/arm64/todoctor
181181
182182
- name: Verify Binary Permissions
183183
run: |
184-
ls -l ./bin/linux/x64/todoctor || true
185-
ls -l ./bin/linux/arm64/todoctor || true
186-
ls -l ./bin/macos/x64/todoctor || true
187-
ls -l ./bin/macos/arm64/todoctor || true
184+
ls -l ./bin/linux/x64/todoctor
185+
ls -l ./bin/linux/arm64/todoctor
186+
ls -l ./bin/macos/x64/todoctor
187+
ls -l ./bin/macos/arm64/todoctor
188188
189189
- name: Create GitHub Release
190190
run: pnpm run ci:changelog
@@ -198,4 +198,4 @@ jobs:
198198
run: pnpm run ci:clear
199199

200200
- name: Publish to NPM
201-
run: pnpm publish --access public --no-git-checks --provenance
201+
run: npm publish --access public --no-git-checks --provenance

0 commit comments

Comments
 (0)