Split appimage script and distribution files

This commit is contained in:
Julien Reichardt 2021-05-01 13:26:32 +02:00
parent a1a7b073d5
commit 4bd1161ac9
9 changed files with 2 additions and 2 deletions

View File

@ -175,7 +175,7 @@ jobs:
cd build
cmake -DCMAKE_BUILD_TYPE=Release -DBUILD_NOGUI_FRONTEND=ON -DBUILD_QT_FRONTEND=ON -DUSE_DRMKMS=ON -DUSE_EGL=ON -DUSE_SDL2=ON -DUSE_WAYLAND=ON -DUSE_X11=ON -G Ninja ..
ninja
../appimage/generate_appimages.sh $(pwd)
../scripts/generate_appimages.sh $(pwd)
- name: Upload NoGUI AppImage
uses: actions/upload-artifact@v1

View File

Before

Width:  |  Height:  |  Size: 643 B

After

Width:  |  Height:  |  Size: 643 B

View File

Before

Width:  |  Height:  |  Size: 1.4 KiB

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

Before

Width:  |  Height:  |  Size: 2.2 KiB

After

Width:  |  Height:  |  Size: 2.2 KiB

View File

Before

Width:  |  Height:  |  Size: 3.0 KiB

After

Width:  |  Height:  |  Size: 3.0 KiB

View File

@ -1,7 +1,7 @@
#!/bin/bash
# NOTE: Keep this script in the same directory as resources for AppImage creation
APPIMAGE_RESOURCES_DIR=$(dirname $(readlink -f $0))
APPIMAGE_RESOURCES_DIR=$(dirname $(readlink -f $0))/../dist
echo "APPIMAGE_RESOURCES_DIR set to ${APPIMAGE_RESOURCES_DIR}"
if [[ "$#" -ne 1 ]]; then