From e26dbc71c65c2b233fde0d4a1334749def8d04ac Mon Sep 17 00:00:00 2001 From: itsmattkc <34096995+itsmattkc@users.noreply.github.com> Date: Sun, 30 Jan 2022 16:47:35 -0800 Subject: [PATCH] ci: use different qt5 tools package for deployment --- .github/workflows/ci.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a92d6d827..8c485753c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -376,10 +376,9 @@ jobs: if [ "${{ matrix.os-arch }}" != "x86_64" ] then - # Must acquire Qt tools from x86_64 package - $DOWNLOAD_TOOL https://github.com/olive-editor/dependencies/releases/download/continuous/olive-dep-mac-x86_64.tar.gz - tar xzf olive-dep-mac-x86_64.tar.gz - MACDEPLOYQT=$(pwd)/opt/olive-editor/bin/macdeployqt + # Must acquire x86_64 Qt tools to finish deployment + brew install qt5 + MACDEPLOYQT=/usr/local/opt/qt@5/bin/macdeployqt else MACDEPLOYQT=$DEP_LOCATION/bin/macdeployqt MACDEPLOYQT_ARGS="-executable=$BUNDLE_NAME/Contents/MacOS/olive-crashhandler"