From f1c52e6d68db9d4f0d7df00bc91cd5e63e37b6b2 Mon Sep 17 00:00:00 2001 From: Orazio <22700499+orazioedoardo@users.noreply.github.com> Date: Sat, 29 Jun 2024 16:12:03 +0200 Subject: [PATCH] Update macOS runner due to GitHub deprecation but still use and Xcode version that supports 10.11 --- .github/workflows/ReleaseBuilds.yml | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ReleaseBuilds.yml b/.github/workflows/ReleaseBuilds.yml index 51d66b7..43c5aa8 100644 --- a/.github/workflows/ReleaseBuilds.yml +++ b/.github/workflows/ReleaseBuilds.yml @@ -4,16 +4,20 @@ on: [workflow_dispatch] jobs: build-macos: - runs-on: macos-11 + runs-on: macos-12 timeout-minutes: 15 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: ref: master + - uses: maxim-lobanov/setup-xcode@v1 + with: + xcode-version: 13 + - run: bash build-mac-app.sh - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v4 with: name: mac-build path: SpaceCadetPinball-*-mac.dmg