Skip to content

Commit

Permalink
fix ci
Browse files Browse the repository at this point in the history
  • Loading branch information
ra3orblade committed Apr 25, 2024
1 parent 5374b63 commit 288e895
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
run: sudo -H pip install setuptools

- name: Setup distutils MacOS
if: matrix.os == 'macos-latest'
if: matrix.os == 'macos-12'
run: brew install python-setuptools

- name: Install Node.js, NPM and Yarn
Expand Down Expand Up @@ -90,7 +90,7 @@ jobs:
CGO_ENABLED: 0

- name: Build Front Mac OS
if: matrix.os == 'macos-latest'
if: matrix.os == 'macos-12'
uses: samuelmeuli/action-electron-builder@v1
with:
github_token: ${{secrets.TOKEN}}
Expand All @@ -109,7 +109,7 @@ jobs:
SENTRY_AUTH_TOKEN: ${{secrets.SENTRY_AUTH_TOKEN}}

- name: Build Front Other
if: matrix.os != 'macos-latest'
if: matrix.os != 'macos-12'
uses: samuelmeuli/action-electron-builder@v1
with:
github_token: ${{secrets.TOKEN}}
Expand Down
2 changes: 1 addition & 1 deletion update-ci.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ folder="build";
if [ "$platform" = "ubuntu-latest" ]; then
arch="linux-$arch";
folder="$arch";
elif [ "$platform" = "macos-latest" ]; then
elif [ "$platform" = "macos-12" ]; then
arch="darwin-$arch";
folder="$arch";
elif [ "$platform" = "windows-latest" ]; then
Expand Down
2 changes: 1 addition & 1 deletion update.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ folder="build";
if [ "$platform" = "ubuntu-latest" ]; then
arch="linux-$arch";
folder="$arch";
elif [ "$platform" = "macos-latest" ]; then
elif [ "$platform" = "macos-12" ]; then
arch="darwin-$arch";
folder="$arch";
elif [ "$platform" = "windows-latest" ]; then
Expand Down

0 comments on commit 288e895

Please sign in to comment.