We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aec59aa commit a992f5eCopy full SHA for a992f5e
1 file changed
.github/workflows/windows.yml
@@ -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
23
+ name: sono-windows
24
+ path: build/windows/x64/runner/Release/
0 commit comments