Skip to content

Commit

Permalink
ci: 🎡 fix path
Browse files Browse the repository at this point in the history
  • Loading branch information
denghongcai committed Dec 18, 2024
1 parent 71f6081 commit 23466cc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,15 +74,15 @@ jobs:
- name: Before Build
run: |
if [[ $PUBLISH_BINARY == true ]]; then node-pre-gyp package; node-pre-gyp-github publish --release; fi;
node-pre-gyp clean
./node_modules/.bin/node-pre-gyp clean
node-gyp clean
- name: Publish Check
run: |
INSTALL_RESULT=0
if [[ $PUBLISH_BINARY == true ]]; then INSTALL_RESULT=$(npm install --fallback-to-build=false > /dev/null)$? || true; fi;
if [[ $INSTALL_RESULT != 0 ]]; then echo "returned $INSTALL_RESULT";false; fi
node-pre-gyp clean
./node_modules/.bin/node-pre-gyp clean
- name: Build Success
run: node-pre-gyp info
run: ./node_modules/.bin/node-pre-gyp info

0 comments on commit 23466cc

Please sign in to comment.