Skip to content

Commit

Permalink
Fix broken MacOS build and publish workflow (#143)
Browse files Browse the repository at this point in the history
* Test build

* Try passing in identity explicitly

* Revert forge config changes

* Upgrade all packages, update Node version in workflows

* pnpm i, bump node types

* Update Node version

* pip install packaging

* Setup Python

* Name job, add to publish workflow

* Revert package upgrades
  • Loading branch information
sergeichestakov authored Jan 2, 2024
1 parent ff27d48 commit e92b837
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
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

0 comments on commit e92b837

Please sign in to comment.