From a8688ef6f49b3ef1c300ce381f9149042252f640 Mon Sep 17 00:00:00 2001 From: Binrui Dong Date: Mon, 27 Mar 2023 18:20:38 +0800 Subject: [PATCH] Build macOS Universal Binary in Experimental Release workflow --- .github/workflows/release.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 3a0d91cc8d464..df47ba72963bc 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -142,20 +142,20 @@ jobs: artifact: linux-curses-x64 ext: tar.gz content: application/gzip - - name: OSX Curses x64 + - name: macOS Curses Universal Binary (x64 and arm64) os: macos-12 mxe: none tiles: 0 sound: 0 - artifact: osx-curses-x64 + artifact: osx-curses-universal ext: dmg content: application/x-apple-diskimage - - name: OSX Tiles x64 + - name: macOS Tiles Universal Binary (x64 and arm64) os: macos-12 mxe: none tiles: 1 sound: 0 - artifact: osx-tiles-x64 + artifact: osx-tiles-universal ext: dmg content: application/x-apple-diskimage - name: Android x64 @@ -287,7 +287,7 @@ jobs: - name: Build CDDA (osx) if: runner.os == 'macOS' run: | - make -j3 TILES=${{ matrix.tiles }} SOUND=${{ matrix.tiles }} RELEASE=1 LOCALIZE=1 LANGUAGES=all BACKTRACE=0 PCH=0 USE_HOME_DIR=1 FRAMEWORK=1 dmgdist + make -j3 TILES=${{ matrix.tiles }} SOUND=${{ matrix.tiles }} RELEASE=1 LOCALIZE=1 LANGUAGES=all BACKTRACE=0 PCH=0 USE_HOME_DIR=1 FRAMEWORK=1 UNIVERSAL_BINARY=1 dmgdist mv Cataclysm.dmg cdda-${{ matrix.artifact }}-${{ needs.release.outputs.timestamp }}.dmg - name: Set up JDK 8 (android) if: runner.os == 'Linux' && matrix.android != 'none' && matrix.mxe == 'none'