Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix broken MacOS build and publish workflow #143

Merged
merged 13 commits into from
Jan 2, 2024
8 changes: 6 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,9 +80,13 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 18.x
node-version: 20.10.x
cache: pnpm
- name: Install
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Install npm packages
run: pnpm install
- name: Generate Windows code signing certificate
if: matrix.os == 'windows-latest'
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,10 @@ jobs:
with:
node-version: 20.10.x
cache: pnpm
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Install
run: pnpm install
- name: Build
Expand Down