fix : fixes bottomSheet loading #67
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: cln app build binary | |
on: | |
push: | |
branches: [ main ] | |
jobs: | |
build-and-release-linux: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: subosito/flutter-action@v2 | |
- name: Install dependencies | |
run: sudo apt-get install -y clang cmake ninja-build pkg-config libgtk-3-dev liblzma-dev | |
- name: Install project dependencies | |
run: make dep | |
#- name: Generate intermediates | |
# run: make gen | |
- name: Enable linux build | |
run: flutter config --enable-linux-desktop | |
- name: Build artifacts | |
run: flutter build linux --release | |
- name: Upload linux Binary | |
uses: actions/upload-artifact@v2 | |
with: | |
name: cln.app-linux | |
path: build/linux/x64/release/bundle | |
build-and-release-windows: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: subosito/flutter-action@v2 | |
- name: Install project dependencies | |
run: flutter pub get | |
- name: Enable windows build | |
run: flutter config --enable-windows-desktop | |
- name: Build artifacts | |
run: flutter build windows --release | |
- name: Upload windows Binary | |
uses: actions/upload-artifact@v2 | |
with: | |
name: cln.app-windows | |
path: build/windows/x64/release/bundle | |
build-and-release-macos: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: subosito/flutter-action@v2 | |
- name: Install project dependencies | |
run: flutter pub get | |
- name: Enable macOS build | |
run: flutter config --enable-macos-desktop | |
- name: Build artifacts | |
run: flutter build macos --release | |
- name: Upload Macos Binary | |
uses: actions/upload-artifact@v2 | |
with: | |
name: cln.app-macos | |
path: build/macos/Build/Products/Release | |
build-and-release-android: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- uses: actions/setup-java@v1 | |
with: | |
java-version: '12.x' | |
- uses: subosito/flutter-action@v2 | |
- run: flutter pub get | |
- run: flutter build apk | |
- uses: actions/upload-artifact@v1 | |
with: | |
name: cln.app-android-dev | |
path: build/app/outputs/apk/release/app-release.apk |