-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathslidy.yaml
More file actions
77 lines (64 loc) · 1.86 KB
/
slidy.yaml
File metadata and controls
77 lines (64 loc) · 1.86 KB
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
slidy: '1'
variables:
release: flutter build apk --release
clean: flutter clean
get: flutter pub get
runner: flutter pub run build_runner
icon: flutter pub run flutter_launcher_icons:main
splash: flutter pub run flutter_native_splash:create
scripts:
release_build:
steps:
- name: "Build App Release"
run: ${Local.var.release}
icon_build:
steps:
- name: "Build AppIcon"
run: ${Local.var.icon}
splash_build:
steps:
- name: "Build SplashScreen"
run: ${Local.var.splash}
mobx_build: ${Local.var.runner} build
mobx_watch:
steps:
- name: "Clean"
run: ${Local.var.clean}
- name: "GetPackages"
description: "Get packages"
run: ${Local.var.get}
- name: "Buildrunner"
description: "Construir classes auto geradas"
run: ${Local.var.runner} watch --delete-conflicting-outputs --use-polling-watcher
mobx_build_clean:
steps:
- name: "Clean"
run: ${Local.var.clean}
- name: "GetPackages"
description: "Get packages"
run: ${Local.var.get}
- name: "Buildrunner"
description: "Construir classes auto geradas"
run: ${Local.var.runner} build --delete-conflicting-outputs --use-polling-watcher
doctor: flutter doctor
clean:
name: "Clean"
run: flutter clean
cleanup:
description: "cleanup project"
steps:
- name: "Clean"
run: flutter clean
- name: "GetPackages"
description: "Get packages"
run: flutter pub get
- name: "PodClean"
description: "Execute pod clean"
shell: bash # default: command. options (command|bash|sh|zsh|pwsh)
condition: "${System.operatingSystem} == macos"
working-directory: ios
run: |-
rm Podfile.lock
pod deintegrate
pod update
pod install