From 8fb7a2d140b8d1b995695a1b090667165de2a6ce Mon Sep 17 00:00:00 2001 From: jgmdev Date: Wed, 25 Jan 2023 17:28:34 -0400 Subject: [PATCH] gh workflow: fix path to macOS arm64 cross file --- .github/workflows/release.yml | 2 +- scripts/build.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index a8d97e54..ea0e1848 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -93,7 +93,7 @@ jobs: LiteXL-${{ env.INSTALL_REF }}-addons-x86_64.AppImage build_macos: - name: macOS (x86_64) + name: macOS needs: release runs-on: macos-11 strategy: diff --git a/scripts/build.sh b/scripts/build.sh index 5812bd8b..82eb95f0 100644 --- a/scripts/build.sh +++ b/scripts/build.sh @@ -111,7 +111,7 @@ main() { if [[ $platform == "macos" ]]; then macos_version_min=10.11 if [[ $CROSS_ARCH == "arm64" ]]; then - cross_file="--cross-file resources/macos/macos_arm64.conf" + cross_file="--cross-file resources/cross/macos_arm64.txt" macos_version_min=11.0 fi export MACOSX_DEPLOYMENT_TARGET=$macos_version_min