mirror of
https://github.com/Xevion/orianne.git
synced 2025-12-09 18:07:40 -06:00
Package executable with linuxdeployqt
This commit is contained in:
16
.github/workflows/build.yaml
vendored
16
.github/workflows/build.yaml
vendored
@@ -32,8 +32,22 @@ jobs:
|
|||||||
- name: Build
|
- name: Build
|
||||||
run: cmake --build '${{github.workspace}}'/build
|
run: cmake --build '${{github.workspace}}'/build
|
||||||
|
|
||||||
|
- name: Download linuxdeployqt
|
||||||
|
run: |
|
||||||
|
wget -c -nv "https://github.com/probonopd/linuxdeployqt/releases/download/continuous/linuxdeployqt-continuous-x86_64.AppImage"
|
||||||
|
chmod a+x linuxdeployqt-continuous-x86_64.AppImage
|
||||||
|
|
||||||
|
- name: Package artifacts with linuxdeployqt
|
||||||
|
run: |
|
||||||
|
mkdir -p appdir/usr/bin/
|
||||||
|
mv ./calculatorbuilder appdir/usr/bin/
|
||||||
|
export VERSION=${0.0.1}-linux # linuxdeployqt uses this for naming the package
|
||||||
|
echo "Version is: ${VERSION}"
|
||||||
|
./linuxdeployqt-continuous-x86_64.AppImage --appimage-extract-and-run appdir/usr/share/applications/*.desktop \
|
||||||
|
-appimage -verbose=2 -extra-plugins=iconengines
|
||||||
|
|
||||||
- name: Upload artifact
|
- name: Upload artifact
|
||||||
uses: actions/upload-artifact@v2
|
uses: actions/upload-artifact@v2
|
||||||
with:
|
with:
|
||||||
name: build
|
name: build
|
||||||
path: build
|
path: build
|
||||||
|
|||||||
Reference in New Issue
Block a user