Update README.md #42
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: Build Windows app | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Set up Flutter | |
uses: subosito/[email protected] | |
with: | |
flutter-version: "3.13.2" # Set flutter version here | |
- name: Build Windows app | |
run: flutter build windows --release | |
- name: Copy dependencies | |
run: copy .\windows\sqlite3.dll .\build\windows\runner\Release\ | |
- name: Upload artifact | |
uses: actions/upload-artifact@v2 | |
with: | |
name: aidea | |
path: build/windows/runner/Release |