diff options
Diffstat (limited to '.ci/scripts/linux/upload.sh')
| -rwxr-xr-x[-rw-r--r--] | .ci/scripts/linux/upload.sh | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/.ci/scripts/linux/upload.sh b/.ci/scripts/linux/upload.sh index 208cd0d04..3f2c2f208 100644..100755 --- a/.ci/scripts/linux/upload.sh +++ b/.ci/scripts/linux/upload.sh | |||
| @@ -24,6 +24,11 @@ cd build | |||
| 24 | wget -nc https://github.com/yuzu-emu/ext-linux-bin/raw/main/appimage/appimagetool-x86_64.AppImage | 24 | wget -nc https://github.com/yuzu-emu/ext-linux-bin/raw/main/appimage/appimagetool-x86_64.AppImage |
| 25 | chmod 755 appimagetool-x86_64.AppImage | 25 | chmod 755 appimagetool-x86_64.AppImage |
| 26 | 26 | ||
| 27 | # if FUSE is not available, then fallback to extract and run | ||
| 28 | if ! ./appimagetool-x86_64.AppImage --version; then | ||
| 29 | export APPIMAGE_EXTRACT_AND_RUN=1 | ||
| 30 | fi | ||
| 31 | |||
| 27 | if [ "${RELEASE_NAME}" = "mainline" ]; then | 32 | if [ "${RELEASE_NAME}" = "mainline" ]; then |
| 28 | # Generate update information if releasing to mainline | 33 | # Generate update information if releasing to mainline |
| 29 | ./appimagetool-x86_64.AppImage -u "gh-releases-zsync|yuzu-emu|yuzu-${RELEASE_NAME}|latest|yuzu-*.AppImage.zsync" AppDir "${APPIMAGE_NAME}" | 34 | ./appimagetool-x86_64.AppImage -u "gh-releases-zsync|yuzu-emu|yuzu-${RELEASE_NAME}|latest|yuzu-*.AppImage.zsync" AppDir "${APPIMAGE_NAME}" |