From 204f49ffbf27f160737539f3c37e36840641ee7c Mon Sep 17 00:00:00 2001 From: Martin Pulec Date: Mon, 17 Jul 2023 16:08:24 +0200 Subject: [PATCH] CI Linux: prevent mkappimage auto upload mkappimage now tries to automatically upload the asset if it detects running in GitHub CI, which is not the one that we perhaps want. See following failed run: https://github.com/CESNET/UltraGrid/actions/runs/5575039257/jobs/10185765784 --- data/scripts/Linux-AppImage/create-appimage.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/data/scripts/Linux-AppImage/create-appimage.sh b/data/scripts/Linux-AppImage/create-appimage.sh index d9320b564b..bb4e12da8c 100755 --- a/data/scripts/Linux-AppImage/create-appimage.sh +++ b/data/scripts/Linux-AppImage/create-appimage.sh @@ -167,8 +167,9 @@ UPDATE_INFORMATION= if [ $# -ge 1 ]; then UPDATE_INFORMATION="-u zsync|$1" fi -# shellcheck disable=SC2086 # word spliting of $UPDATE_INFORMATION is requested behavior -$mkappimage $UPDATE_INFORMATION $APPDIR +# shellcheck disable=SC1007,SC2086 # word spliting of +# $UPDATE_INFORMATION is a requested behavior +GITHUB_TOKEN= $mkappimage $UPDATE_INFORMATION $APPDIR rm -rf $APPDIR tmpinstall )