-
Notifications
You must be signed in to change notification settings - Fork 11
/
Fastfile
55 lines (48 loc) · 1.1 KB
/
Fastfile
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
lane :test do
flutter_version_manager(
arguments: "-major",
yml: "./version.yml",
pubspec: "./example_pubspec.yaml")
end
lane :bump_major do
flutter_version_manager(
arguments: "-major",
yml: "./version.yml",
pubspec: "./example_pubspec.yaml")
end
lane :bump_minor do
flutter_version_manager(
arguments: "-minor",
yml: "./version.yml",
pubspec: "./example_pubspec.yaml")
end
lane :bump_patch do
flutter_version_manager(
arguments: "-patch",
yml: "./version.yml",
pubspec: "./example_pubspec.yaml")
end
lane :read_version do
flutter_version_manager(
arguments: "-version",
yml: "./version.yml",
pubspec: "./example_pubspec.yaml")
end
lane :read_code do
flutter_version_manager(
arguments: "-code",
yml: "./version.yml",
pubspec: "./example_pubspec.yaml")
end
lane :apply_new_version do
flutter_version_manager(
arguments: "-apply",
yml: "./version.yml",
pubspec: "./example_pubspec.yaml")
end
lane :get_help do
flutter_version_manager(
arguments: "-h",
yml: "./version.yml",
pubspec: "./example_pubspec.yaml")
end