Merge branch 'main' into develop #78
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 | |
- develop | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Set up Flutter | |
uses: subosito/flutter-action@v2.10.0 | |
with: | |
flutter-version: "3.19.2" # Set flutter version here | |
- name: Build Windows app | |
#run: flutter build windows --release | |
run: dart run msix:create --release -v --output-path build/windows/runner --output-name AIdea --install-certificate false | |
# - 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/AIdea.msix |