Skip to content

Commit

Permalink
Fix late '_runtime' is not initialized
Browse files Browse the repository at this point in the history
  • Loading branch information
TaYaKi71751 committed Dec 11, 2023
1 parent 07f0e83 commit 9f6a832
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,14 +56,14 @@ jobs:

# https://github.com/AppImageCrafters/appimage-builder-flutter-example/blob/main/.github/workflows/appimage.yml
linux-build:
runs-on: Ubuntu-20.04
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- uses: subosito/flutter-action@v1
# with:
# flutter-version: '1.22.4'
- run: flutter channel beta
- run: flutter upgrade
# - run: flutter channel beta
# - run: flutter upgrade
- run: flutter config --enable-linux-desktop
- name: "Install dependencies"
run: |
Expand All @@ -83,6 +83,12 @@ jobs:
EOF
python3 preprocess-linux.py
flutter build linux
find ./build/linux/x64/release/plugins -type f -name '*.so' -exec cp {} ./build/linux/x64/release/bundle/lib/ \;
- name: Save build Artifact
uses: actions/upload-artifact@v2
with:
name: LinuxBuild
path: './build/linux/x64/release/bundle'
- name: Build AppImage unsing appimage-builder
uses: docker://appimagecrafters/appimage-builder:0.8.5
with:
Expand Down

0 comments on commit 9f6a832

Please sign in to comment.