From c78dab24799a84813f2d6bec0a1058d62d5db8db Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=B2=89=E9=BB=98=E3=81=AE=E9=87=91?= <110812055+chenmozhijin@users.noreply.github.com> Date: Tue, 20 Feb 2024 21:25:21 +0800 Subject: [PATCH] update --- .github/workflows/build.yml | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 3daaf78..e4df2a9 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -36,16 +36,21 @@ jobs: pip install Pillow pyinstaller # pip install imageio - - name: Install EGL + - name: Install EGL/upx if: ${{ matrix.os == 'ubuntu-latest' }} run: | sudo apt-get update - sudo apt-get install libegl1 + sudo apt-get install libegl1 upx - - name: Install create-dmg + - name: Install create-dmg/upx if: ${{ matrix.os == 'macos-latest' }} run: | - brew install create-dmg + brew install create-dmg upx + + - name: Install upx + if: ${{ matrix.os == 'windows-latest' }} + run: | + choco install upx -y - name: Get Information id: info