-
-
Notifications
You must be signed in to change notification settings - Fork 45
Expand file tree
/
Copy pathMakefile
More file actions
23 lines (19 loc) · 535 Bytes
/
Makefile
File metadata and controls
23 lines (19 loc) · 535 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
.PHONY: setup
setup:
git config core.hooksPath .githooks
# https://docs.fastlane.tools/getting-started/ios/setup/#use-a-gemfile
# https://docs.fastlane.tools/plugins/using-plugins/
# This may not work due to permissions, so use `$ fastlane update` which calls `brew` under the hood
.PHONY: update
update:
sudo bundle update fastlane
bundle exec fastlane update_plugins
.PHONY: local
local:
bundle exec fastlane mac local
.PHONY: beta
beta:
bundle exec fastlane mac beta
.PHONY: prod
prod:
bundle exec fastlane mac production