From 0d3f8792a15f6840f8a6711811d57c99393e61d7 Mon Sep 17 00:00:00 2001 From: Martin Molinero Date: Thu, 29 Jan 2026 10:34:35 -0300 Subject: [PATCH] Fix for macos release update to macos-14 --- .github/workflows/build.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index c968bdf1..1fccf9c6 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -70,7 +70,7 @@ jobs: strategy: matrix: - os: [ubuntu-22.04, macos-13, windows-latest] + os: [ubuntu-22.04, macos-14, windows-latest] python-version: ["3.10"] # on a new tag (release), after 'test' and 'release' have ended we will run this @@ -103,7 +103,7 @@ jobs: shell: bash - name: Create Portable Macos - if: matrix.os == 'macos-13' + if: matrix.os == 'macos-14' env: MACOS_CERTIFICATE: ${{ secrets.MACOS_CERTIFICATE }} MACOS_CERTIFICATE_PWD: ${{ secrets.MACOS_CERTIFICATE_PWD }} @@ -130,7 +130,7 @@ jobs: shell: bash - name: Zip package and notarize Macos - if: matrix.os == 'macos-13' + if: matrix.os == 'macos-14' env: APPLE_ID: ${{ secrets.APPLE_ID }} APPLE_TEAM_ID: ${{ secrets.APPLE_TEAM_ID }}