From aa2300b47f95f4a628149b69cefabe21f6b9cb27 Mon Sep 17 00:00:00 2001 From: Loic Frasse-Mathon Date: Wed, 5 Jun 2024 11:09:26 +0200 Subject: [PATCH] Fixed tyo with macos arm build --- .github/workflows/build-all.yml | 2 +- .github/workflows/build-macosx-arm64.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-all.yml b/.github/workflows/build-all.yml index 1054014..d07c4f3 100644 --- a/.github/workflows/build-all.yml +++ b/.github/workflows/build-all.yml @@ -293,7 +293,7 @@ jobs: name: Build run: | chmod +x compile_macosx.sh - ./compile_macosx.sh amd64 Release ${{ github.event.inputs.repo }} ${{ github.event.inputs.ref }} "${{ secrets.APPLE_BUILD_CERTIFICATE_NAME }}" ${{ secrets.APPLE_TEAM_NAME }} ${{ secrets.APPLE_API_ID }} ${{ secrets.APPLE_API_PASS }} + ./compile_macosx.sh arm64 Release ${{ github.event.inputs.repo }} ${{ github.event.inputs.ref }} "${{ secrets.APPLE_BUILD_CERTIFICATE_NAME }}" ${{ secrets.APPLE_TEAM_NAME }} ${{ secrets.APPLE_API_ID }} ${{ secrets.APPLE_API_PASS }} - name: Clean up keychain if: ${{ always() }} run: | diff --git a/.github/workflows/build-macosx-arm64.yml b/.github/workflows/build-macosx-arm64.yml index ec8fc59..0452e36 100644 --- a/.github/workflows/build-macosx-arm64.yml +++ b/.github/workflows/build-macosx-arm64.yml @@ -52,7 +52,7 @@ jobs: name: Build run: | chmod +x compile_macosx.sh - ./compile_macosx.sh amd64 Release ${{ github.event.inputs.repo }} ${{ github.event.inputs.ref }} "${{ secrets.APPLE_BUILD_CERTIFICATE_NAME }}" ${{ secrets.APPLE_TEAM_NAME }} ${{ secrets.APPLE_API_ID }} ${{ secrets.APPLE_API_PASS }} + ./compile_macosx.sh arm64 Release ${{ github.event.inputs.repo }} ${{ github.event.inputs.ref }} "${{ secrets.APPLE_BUILD_CERTIFICATE_NAME }}" ${{ secrets.APPLE_TEAM_NAME }} ${{ secrets.APPLE_API_ID }} ${{ secrets.APPLE_API_PASS }} - name: Clean up keychain if: ${{ always() }} run: |