- fastlane에는 어떤 기능을 실행할 수 있게하는 설정이 크게 2부류가 존재하는데
action
과 plugin
이다.
actions
Files
./fastlane/Pluginfile
- 설치된 플러그인이 기록됨
bundle exec fastlane add_plugin ~~
으로 플러그인 설치하면 기록됨
./fastlane/Fastfile
.fastlane/.env
# Slack
SLACK_URL = '<https://hooks.slack.com/services/xxxxxxx>'
SLACK_CHANNEL = 'channel_name'
# AppStore Connect
APPSTORE_CONNECT_ID = '[email protected]'
FASTLANE_APPLE_APPLICATION_SPECIFIC_PASSWORD = 'xxxx-xxxx-xxxx-xxxx'
# Github
GITHUB_SIGNING_REPO_URL = '<https://github.com/git-user/repo.git>'
GITHUB_API_TOKEN = 'git-token-password'
Build
gym action