Skip to content

Commit

Permalink
Try updating action
Browse files Browse the repository at this point in the history
  • Loading branch information
m0ngr31 committed Dec 16, 2024
1 parent 3902ee7 commit 880e1aa
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:

strategy:
matrix:
os: [ubuntu-20.04, windows-latest]
os: [macos-13, ubuntu-20.04, windows-latest]

steps:
- name: Check out Git repository
Expand All @@ -24,6 +24,13 @@ jobs:

- run: npm i -g npm@7
- run: npm ci

- name: Install distutils on macOS
if: runner.os == 'macOS'
run: |
python3 -m ensurepip
python3 -m pip install --upgrade pip setuptools
- run: npm run electron:build -p always
env:
GH_TOKEN: ${{ secrets.github_token }}

0 comments on commit 880e1aa

Please sign in to comment.