Skip to content

Commit

Permalink
feat: update workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
chenmozhijin committed Aug 17, 2024
1 parent aa24221 commit 1d44712
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build-nuitka.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ jobs:
sudo apt-get install libegl1 upx
- name: Install create-dmg/upx
if: ${{ matrix.os == 'macos-latest' }}
if: ${{ matrix.os == 'macos-latest' || matrix.os == 'macos-13' }}
run: |
brew install create-dmg upx
Expand All @@ -83,7 +83,7 @@ jobs:
- name: Build Executable
uses: Nuitka/Nuitka-Action@main
if : ${{ matrix.os == 'ubuntu-latest' || matrix.os == 'macos-latest' }}
if : ${{ matrix.os == 'ubuntu-latest' || matrix.os == 'macos-latest' || matrix.os == 'macos-13'}}
with:
nuitka-version: main
script-name: LDDC.py
Expand Down Expand Up @@ -130,7 +130,7 @@ jobs:
report.xml
- name: create dmg
if: ${{ matrix.os == 'macos-latest' }}
if: ${{ matrix.os == 'macos-latest' || matrix.os == 'macos-13' }}
run: |
create-dmg \
--volname "LDDC" \
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ jobs:
if ${{ matrix.os == 'ubuntu-latest' }} || ${{ matrix.os == 'windows-latest' }}
then
icon_filename="logo.ico"
elif ${{ matrix.os == 'macos-latest' }}
elif ${{ matrix.os == 'macos-latest' || matrix.os == 'macos-13' }}
then
icon_filename="logo.icns"
fi
Expand Down

0 comments on commit 1d44712

Please sign in to comment.