Skip to content

Commit

Permalink
🐛 Install cmake.js globally in CI as workaround for deploy failure
Browse files Browse the repository at this point in the history
  • Loading branch information
Schneegans committed Nov 24, 2023
1 parent 558a80d commit c8f7b37
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,13 @@ jobs:
with:
node-version: 18
- name: Install Dependencies
# A simple npm install should be sufficient, but for some reason cmake.js
# sometimes skips the build step in CI on Windows in this case. So we install
# and execute cmake.js manually.
run: |
npm ci
npm install cmake-js -g
npx cmake-js install
npm install
- name: Create Release
run: |
npm run make
Expand Down

0 comments on commit c8f7b37

Please sign in to comment.