diff options
author | Nicolas Werner <nicolas.werner@hotmail.de> | 2023-11-06 20:49:54 +0100 |
---|---|---|
committer | Nicolas Werner <nicolas.werner@hotmail.de> | 2023-11-06 20:49:54 +0100 |
commit | 31aebb33ae95557b1b8c0e746d7bb7c7e1ed0592 (patch) | |
tree | a259613fe8039f8a0e3153407fced9886a9e6388 /.gitlab-ci.yml | |
parent | Fix crash during calls (diff) | |
download | nheko-31aebb33ae95557b1b8c0e746d7bb7c7e1ed0592.tar.xz |
Fix macos builds with newer icu
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 0a15fa33..a273b831 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -173,7 +173,8 @@ codesign-macos: before_script: - pip3 install dmgbuild script: - - export PATH=/Users/jdonof/Qt/6.5.1/macos/bin:${PATH} + - export QTPATH=(/Users/jdonof/Qt/6.*/macos/bin) + - export PATH=${QTPATH}:${PATH} - ./.ci/macos/notarize.sh after_script: - ./.ci/upload-nightly-gitlab.sh artifacts/nheko-${CI_COMMIT_SHORT_SHA}-${PLAT}.dmg |