Skip to content

Commit a992f5e

Browse files
authored
Create windows.yml
1 parent aec59aa commit a992f5e

1 file changed

Lines changed: 24 additions & 0 deletions

File tree

.github/workflows/windows.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: Build Windows
2+
3+
on:
4+
workflow_dispatch:
5+
6+
jobs:
7+
build-windows:
8+
runs-on: windows-latest
9+
steps:
10+
- uses: actions/checkout@v6
11+
12+
- uses: subosito/flutter-action@v2
13+
with:
14+
channel: stable
15+
16+
- run: flutter pub get
17+
18+
- run: flutter build windows --release
19+
20+
- name: Upload Windows build
21+
uses: actions/upload-artifact@v4
22+
with:
23+
name: sono-windows
24+
path: build/windows/x64/runner/Release/

0 commit comments

Comments
 (0)