-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
29 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,20 @@ | ||
project: | ||
help: | ||
@fgrep -h "##" $(MAKEFILE_LIST) | fgrep -v fgrep | sed -e 's/\\$$//' | sed -e 's/##//' | ||
|
||
project: ## xcodegen으로 프로젝트를 구성합니다 | ||
xcodegen generate --spec project.yml | ||
|
||
clean: | ||
clean: ## DrivedData을 삭제합니다 | ||
rm -rf ./DrivedData/ | ||
|
||
dev-upload: | ||
dev-upload: ## 개발버전을 firebase로 배포합니다 | ||
fastlane ios develop firebase_upload:true groups:iOS slack_notify:true | ||
|
||
appstore: | ||
appstore: ## 앱스토어에 업로드합니다 | ||
fastlane ios release | ||
|
||
certificates: | ||
certificates: ## 인증서를 갱신합니다 | ||
fastlane ios certificates | ||
|
||
lint: | ||
lint: ## 린트를 동작합니다 | ||
fastlane ios lint |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters