Skip to content

Commit

Permalink
fix: workflow 환경변수 설정
Browse files Browse the repository at this point in the history
  • Loading branch information
Seokki-Kwon committed Oct 16, 2024
1 parent b970dec commit 8b499e9
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions .github/workflows/deploy_on_testflight.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,3 +25,7 @@ jobs:
run: fastlane beta
env:
MATCH_PASSWORD: ${{ secrets.MATCH_PASSWORD }}
APP_STORE_CONNECT_API_KEY_KEY_ID: ${{ secrets.APP_STORE_CONNECT_API_KEY_KEY_ID }}
APP_STORE_CONNECT_API_KEY_ISSUER_ID: ${{ secrets.APP_STORE_CONNECT_API_KEY_ISSUER_ID }}
APP_STORE_CONNECT_API_KEY_KEY: ${{ secrets.APP_STORE_CONNECT_API_KEY_KEY }}
GIT_URL: ${{ secrets.GIT_URL }}
2 changes: 1 addition & 1 deletion fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ desc "Push a new beta build to TestFlight"
app_store_connect_api_key(
key_id: ENV['APP_STORE_CONNECT_API_KEY_KEY_ID'],
issuer_id: ENV['APP_STORE_CONNECT_API_KEY_ISSUER_ID'],
key_content: "-----BEGIN EC PRIVATE KEY-----\ENV['APP_STORE_CONNECT_API_KEY_KEY']\n-----END EC PRIVATE KEY-----"
key_content: "ENV['APP_STORE_CONNECT_API_KEY_KEY']"
)
new_build_number = latest_testflight_build_number
version = get_version_number(xcodeproj: "HongikYeolgong2.xcodeproj")
Expand Down

0 comments on commit 8b499e9

Please sign in to comment.