diff options
author | lat9nq <lat9nq@gmail.com> | 2022-07-31 06:07:30 +0200 |
---|---|---|
committer | lat9nq <lat9nq@gmail.com> | 2022-07-31 09:25:29 +0200 |
commit | d77fe3b1c2990e97a5c8f3f5f76476f44b8892b0 (patch) | |
tree | ecc9a2b9f3aa7b6e77d538a18d5c8d16da4002f1 /.ci | |
parent | patreon step2: Enable Linux build (diff) | |
download | yuzu-d77fe3b1c2990e97a5c8f3f5f76476f44b8892b0.tar yuzu-d77fe3b1c2990e97a5c8f3f5f76476f44b8892b0.tar.gz yuzu-d77fe3b1c2990e97a5c8f3f5f76476f44b8892b0.tar.bz2 yuzu-d77fe3b1c2990e97a5c8f3f5f76476f44b8892b0.tar.lz yuzu-d77fe3b1c2990e97a5c8f3f5f76476f44b8892b0.tar.xz yuzu-d77fe3b1c2990e97a5c8f3f5f76476f44b8892b0.tar.zst yuzu-d77fe3b1c2990e97a5c8f3f5f76476f44b8892b0.zip |
Diffstat (limited to '.ci')
-rwxr-xr-x | .ci/scripts/linux/upload.sh | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/.ci/scripts/linux/upload.sh b/.ci/scripts/linux/upload.sh index 155edf25b..e0f336427 100755 --- a/.ci/scripts/linux/upload.sh +++ b/.ci/scripts/linux/upload.sh @@ -20,7 +20,9 @@ fi mkdir "$DIR_NAME" cp build/bin/yuzu-cmd "$DIR_NAME" -cp build/bin/yuzu "$DIR_NAME" +if [ "${RELEASE_NAME}" != "early-access" ] && [ "${RELEASE_NAME}" != "mainline" ]; then + cp build/bin/yuzu "$DIR_NAME" +fi # Build an AppImage cd build @@ -33,6 +35,11 @@ if ! ./appimagetool-x86_64.AppImage --version; then export APPIMAGE_EXTRACT_AND_RUN=1 fi +# Don't let AppImageLauncher ask to integrate EA +if [ "${RELEASE_NAME}" = "mainline" ] || [ "${RELEASE_NAME}" = "early-access" ]; then + echo "X-AppImage-Integrate=false" >> AppDir/org.yuzu_emu.yuzu.desktop +fi + if [ "${RELEASE_NAME}" = "mainline" ]; then # Generate update information if releasing to mainline ./appimagetool-x86_64.AppImage -u "gh-releases-zsync|yuzu-emu|yuzu-${RELEASE_NAME}|latest|yuzu-*.AppImage.zsync" AppDir "${APPIMAGE_NAME}" |