From 0dd76c79a8c2ef208dee89e9317df8ec838c76ea Mon Sep 17 00:00:00 2001 From: "trop[bot]" <37223003+trop[bot]@users.noreply.github.com> Date: Tue, 30 Jul 2024 19:28:19 -0500 Subject: [PATCH] build: fixup ffmpeg release on x64 macOS (#43118) chore: fixup arch on x64 macOS ffmpeg Co-authored-by: trop[bot] <37223003+trop[bot]@users.noreply.github.com> Co-authored-by: John Kleinschmidt --- .github/actions/build-electron/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/build-electron/action.yml b/.github/actions/build-electron/action.yml index 9079bf89752e..cc80f021eb1c 100644 --- a/.github/actions/build-electron/action.yml +++ b/.github/actions/build-electron/action.yml @@ -36,7 +36,7 @@ runs: shell: bash if: ${{ inputs.target-arch == 'x64' && inputs.target-platform == 'macos' }} run: | - GN_APPENDED_ARGS="$GN_EXTRA_ARGS v8_snapshot_toolchain=\"//build/toolchain/mac:clang_x64\"" + GN_APPENDED_ARGS="$GN_EXTRA_ARGS target_cpu=\"x64\" v8_snapshot_toolchain=\"//build/toolchain/mac:clang_x64\"" echo "GN_EXTRA_ARGS=$GN_APPENDED_ARGS" >> $GITHUB_ENV - name: Build Electron ${{ inputs.step-suffix }} shell: bash