Skip to content

Commit

Permalink
Build windows app
Browse files Browse the repository at this point in the history
  • Loading branch information
myafer committed Sep 4, 2023
1 parent ff50866 commit 5d0a749
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/build_windows_app.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
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/flutter-action@v2.10.0
with:
flutter-version: "3.13.1" # Set flutter version here

- name: Build Windows app
run: flutter build windows --release

- name: Upload artifact
uses: actions/upload-artifact@v2
with:
name: aferchat
path: build/windows/runner/Release

0 comments on commit 5d0a749

Please sign in to comment.