Skip to content

Commit

Permalink
Update main.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
xianfei committed Apr 11, 2024
1 parent ad99c3b commit 0ac371f
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
# create a build matrix for jobs
strategy:
matrix:
os: [windows-2019, macos-latest]
os: [windows-2019, macos-11]

steps:
# step1: check out repository
Expand All @@ -46,6 +46,12 @@ jobs:
npm run zip:win64
env:
GH_TOKEN: ${{ secrets.SECRET_TOKEN }}

- name: Setup Python 3.11 (macOS)
uses: actions/setup-python@v4
if: matrix.platform == 'darwin'
with:
python-version: '3.11'

- name: build mac app
if: matrix.os == 'macos-latest'
Expand Down

0 comments on commit 0ac371f

Please sign in to comment.