From aaedfb13f248b368016514c64ee51787a3ce4037 Mon Sep 17 00:00:00 2001 From: Zamitto <167933696+zamitto@users.noreply.github.com> Date: Tue, 28 May 2024 00:06:18 -0300 Subject: [PATCH] test python version --- .github/workflows/build.yml | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index a993d0e7..a6c5c734 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -6,7 +6,7 @@ jobs: build: strategy: matrix: - os: [windows-latest, ubuntu-latest, macos-latest] + os: [windows-latest, ubuntu-latest, macos-11] runs-on: ${{ matrix.os }} @@ -23,6 +23,13 @@ jobs: run: yarn - name: Install Python + if: matrix.os == 'macos-11' + uses: actions/setup-python@v5 + with: + python-version: 3.9.0 + + - name: Install Python + if: matrix.os == 'ubuntu-latest' || matrix.os == 'windows-latest' uses: actions/setup-python@v5 with: python-version: 3.9 @@ -50,7 +57,7 @@ jobs: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - name: Build Mac - if: matrix.os == 'macos-latest' + if: matrix.os == 'macos-11' run: yarn build:mac env: MAIN_VITE_ONLINEFIX_USERNAME: ${{ secrets.ONLINEFIX_USERNAME }}