-
Notifications
You must be signed in to change notification settings - Fork 7
42 lines (37 loc) · 1.23 KB
/
windows.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
name: Windows
on: push
jobs:
build-and-release:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- uses: subosito/flutter-action@v2
with:
channel: 'stable'
flutter-version: '3.19.0'
- name: Install project dependencies
run: flutter pub get
- name: Install project dependencies (realm)
run: dart run realm_dart install -t windows
- name: Build artifacts
run: flutter build windows --release
- name: Build artifacts MSIX
run: dart run msix:create
- name: Archive Release
uses: thedoctor0/zip-release@master
with:
type: 'zip'
filename: ${{github.ref_name}}-windows.zip
directory: build/windows/x64/runner/Release
- name: Windows Release
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
files: build/windows/x64/runner/Release/${{github.ref_name}}-windows.zip
- name: Upload Artifact
uses: actions/upload-artifact@v4
with:
name: WindowsX64
path: build/windows/x64/runner/Release/${{github.ref_name}}-windows.zip