-
-
Notifications
You must be signed in to change notification settings - Fork 9
56 lines (46 loc) · 1.26 KB
/
build_macos_dmg.yml
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
# Build Flutter mac OS app and package as .dmg file
name: Build MacOS (.dmg)
"on":
workflow_dispatch:
inputs:
flutterChannel:
description: "Flutter channel"
default: stable
required: true
type: choice
options:
- stable
- beta
- master
jobs:
build:
runs-on: macos-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Flutter
uses: subosito/flutter-action@v2
with:
channel: ${{ inputs.flutterChannel }}
architecture: x64
- uses: actions/setup-node@v3
with:
node-version: 18
- name: Flutter build for MacOS
run: |
flutter pub get
flutter build macos
- name: Install appdmg
run: |
npm install -g appdmg
- name: Building the installer
run: |
appdmg appdmg/config.json appdmg/IIUMSchedule.dmg
- name: Upload the installer as an artifact
uses: actions/upload-artifact@v3
with:
path: "appdmg/IIUMSchedule.dmg"
- name: Write summary
run: |
echo "Build setup"
echo ":blue_heart: Using **Flutter ${{ inputs.flutterChannel }}**" >> $GITHUB_STEP_SUMMARY