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 4463eed commit 85d156d
Showing 1 changed file with 30 additions and 2 deletions.
32 changes: 30 additions & 2 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
- name: Build Flutter Linux App
run: flutter build linux

- run: ls -R
- run: chmod u+x build/linux/x64/release/bundle/open_media_server_app

# Package the built Linux app into an AppImage
- name: Create AppImage
Expand Down Expand Up @@ -93,4 +93,32 @@ jobs:
uses: actions/upload-artifact@v3
with:
name: my-flutter-app.apk
path: '*.apk'
path: '*.apk'

build-web:
runs-on: ubuntu-latest

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

# 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 web
working-directory: ./
shell: bash

- name: Upload a Build Artifact
uses: actions/[email protected]
with:
name: web
path: ./build/web/

0 comments on commit 85d156d

Please sign in to comment.