Skip to content

Commit 0a49014

Browse files
ci: fix linux appimage path. Fix: #1
1 parent 140cfcc commit 0a49014

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/build.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -258,11 +258,14 @@ jobs:
258258
259259
chmod +x linuxdeploy*.AppImage
260260
261-
cp assets/icon/icon-rounded-512.png distribute.png
261+
mkdir -p AppDir/usr/bin
262+
cp -r build/linux/x64/release/bundle/* AppDir/usr/bin/
262263
264+
cp assets/icon/icon-rounded-512.png distribute.png
265+
263266
./linuxdeploy-x86_64.AppImage \
264267
--appdir AppDir \
265-
--executable build/linux/x64/release/bundle/Distribute \
268+
--executable AppDir/usr/bin/Distribute \
266269
--desktop-file linux/net.sourceloc.distributeapp.desktop \
267270
--icon-file distribute.png \
268271
--output appimage

0 commit comments

Comments
 (0)