Skip to content

Commit

Permalink
debug
Browse files Browse the repository at this point in the history
  • Loading branch information
LNA-DEV committed Oct 24, 2024
1 parent 96fbcef commit 0f2577d
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 7 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,13 @@ jobs:
- name: Set executable permissions
run: chmod +x build/linux/x64/release/bundle/open_media_server_app

- run: |
mkdir -p assets/AppImage/usr/bin/
cp -r build/linux/x64/release/bundle/ assets/AppImage/usr/bin/
# Package the built Linux app into an AppImage
- name: Create AppImage
run: ./appimagetool-x86_64.AppImage --appdir=build/linux/x64/release/bundle AppImage.AppImage
run: ARCH=x86_64 ./appimagetool-x86_64.AppImage --appdir=build/linux/x64/release/bundle AppImage.AppImage

# Upload the AppImage as an artifact (optional)
- name: Upload AppImage artifact
Expand Down
2 changes: 2 additions & 0 deletions assets/AppImage/AppRun
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
#!/bin/bash
exec $APPDIR/usr/bin/open_media_server_app
6 changes: 6 additions & 0 deletions assets/AppImage/hello-world.desktop
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
[Desktop Entry]
Type=Application
Name=Hello World
Exec=open_media_server_app
Icon=myapp
Categories=Utility;
File renamed without changes
6 changes: 0 additions & 6 deletions assets/desktop/myapp.desktop

This file was deleted.

0 comments on commit 0f2577d

Please sign in to comment.