Skip to content

Commit 0650c60

Browse files
committed
Do not use $RUNNER_WORKSPACE in AppImage build script
1 parent 7c8d7cc commit 0650c60

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.ci/build_appimage.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ if [[ "$1" != "0" ]]; then
1212
fi
1313

1414
repo_dir=$(pwd)
15-
mkdir -p $RUNNER_WORKSPACE/build
16-
cd $RUNNER_WORKSPACE/build
15+
mkdir -p appimage_build
16+
cd appimage_build
1717

1818
# Build linuxdeploy
1919
sudo apt install -y build-essential g++ pkg-config curl wget libpng-dev libjpeg-dev zsync desktop-file-utils libxcb-cursor0 &&
@@ -87,4 +87,4 @@ esac
8787

8888
./linuxdeploy --appdir AppDir -e src/app/${executable_name} -i $repo_dir/res/${executable_name}.png -d $repo_dir/release/appimage.desktop --plugin qt --output appimage
8989

90-
cp *.AppImage* $repo_dir
90+
mv *.AppImage* $repo_dir

0 commit comments

Comments
 (0)