Skip to content

Commit

Permalink
fix: faslane install 명령어 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
Seokki-Kwon committed Oct 16, 2024
1 parent abe6a3b commit b3f1b4f
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/deploy_on_testflight.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@ jobs:
build:
runs-on: macos-latest
steps:
- name: Install Fastlane
run: brew install fastlane

- uses: actions/checkout@v2
- run: fastlane beta
env:
Expand Down
10 changes: 5 additions & 5 deletions fastlane/Matchfile
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
git_url("https://github.com/TeamHY2/fastlane-match.git")
storage_mode("git")

# fastFile 내에서 match에 사용되는 파라미터 스킵가능
git_url(ENV['GIT_URL']) # git url
storage_mode("git") # storage mode
type("development") # The default type, can be: appstore, adhoc, enterprise or development
app_identifier(ENV['APP_IDENTIFIER'])
username(ENV['APPLE_ID'])
app_identifier(ENV['APP_IDENTIFIER']) # identifier
username(ENV['APPLE_ID']) # appleid

# app_identifier(["tools.fastlane.app", "tools.fastlane.app2"])
# username("user@fastlane.tools") # Your Apple Developer Portal username
Expand Down

0 comments on commit b3f1b4f

Please sign in to comment.