Skip to content

Commit

Permalink
appstore 업로드 lane 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
87kangsw committed Nov 20, 2021
1 parent c08df50 commit 7ec0449
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 2 deletions.
5 changes: 4 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,7 @@ clean:
pod deintegrate

dev-upload:
fastlane ios develop firebase_upload:true groups:iOS slack_notify:true
fastlane ios develop firebase_upload:true groups:iOS slack_notify:true

appstore:
fastlane ios release
8 changes: 8 additions & 0 deletions fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -174,5 +174,13 @@ platform :ios do
)
end
end

lane :release do
sync_code_signing(type: "appstore")
build_app(scheme: "GitTime")
upload_to_app_store(force: true)
end


end

7 changes: 6 additions & 1 deletion fastlane/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,14 @@ fastlane ios message_to_slack
fastlane ios new_member
```

### ios release
```
fastlane ios release
```


----

This README.md is auto-generated and will be re-generated every time [fastlane](https://fastlane.tools) is run.
This README.md is auto-generated and will be re-generated every time [_fastlane_](https://fastlane.tools) is run.
More information about fastlane can be found on [fastlane.tools](https://fastlane.tools).
The documentation of fastlane can be found on [docs.fastlane.tools](https://docs.fastlane.tools).

0 comments on commit 7ec0449

Please sign in to comment.