From 621d6c47f8816cdb7589372a12f497c554ca11c0 Mon Sep 17 00:00:00 2001 From: xianfei Date: Wed, 3 Jul 2024 23:48:42 +0800 Subject: [PATCH] Update main.yml --- .github/workflows/main.yml | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 69cd9c0..07efd42 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -47,11 +47,17 @@ jobs: env: GH_TOKEN: ${{ secrets.SECRET_TOKEN }} - - name: Setup Python 3.11 (macOS) - uses: actions/setup-python@v4 + - name: setup python + uses: actions/setup-python@v5 if: matrix.os == 'macos-13' with: - python-version: '3.11' + python-version: 3.12 + + - name: setup appdmg + if: matrix.os == 'macos-13' + run: | + python3 -m pip install setuptools + npm install -g appdmg@0.6.6 - name: build mac app if: matrix.os == 'macos-13'