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 5cc1037 commit 6a43d9e
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 1 deletion.
36 changes: 36 additions & 0 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -58,3 +58,39 @@ jobs:
with:
name: my-flutter-app.AppImage
path: '*.AppImage'

build-apk:
runs-on: ubuntu-latest

steps:
# Checkout the repository
- name: Checkout code
uses: actions/checkout@v3

- uses: actions/setup-java@v3
with:
distribution: 'zulu'
java-version: '13'

# Install Flutter SDK
- name: Install Flutter
uses: subosito/flutter-action@v2
with:
flutter-version: '3.24.3'

# Fetch Flutter dependencies
- name: Install Flutter dependencies
run: flutter pub get

# Run Flutter build for Linux
- name: Build Flutter Linux App
run: flutter build apk

- run: ls -R

# Upload the AppImage as an artifact
- name: Upload AppImage artifact
uses: actions/upload-artifact@v3
with:
name: my-flutter-app.apk
path: '*.apk'
2 changes: 1 addition & 1 deletion assets/desktop/myapp.desktop
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[Desktop Entry]
Name=My Flutter App
Exec=./open_media_server_app
Exec=./build/linux/x64/release/bundle/open_media_server_app
Icon=myapp
Type=Application
Categories=Utility;

0 comments on commit 6a43d9e

Please sign in to comment.