Skip to content

Commit

Permalink
fix: AppFile, FastFile 경로 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
Do-hyun-Kim authored Jan 13, 2024
1 parent 7d0196a commit 96e4939
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 12 deletions.
19 changes: 9 additions & 10 deletions .github/workflows/swift.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,20 +76,19 @@ jobs:
# KEYCHAIN_PASSWORD: ${{ secrets.KEYCHAIN_PASSWORD }}


# - name: Tuist generate Command
# run: tuist generate
- name: Tuist generate Command
run: tuist generate

# - name: Tuist Build Command
# run: tuist build

- run: fastlane upload_dev_to_testflight
env:
KEYCHAIN_NAME: ${{ secrets.KEYCHAIN_NAME }}
KEYCHAIN_PASSWORD: ${{ secrets.KEYCHAIN_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 }}
BUNDLE_ID: ${{secrets.BUNDLE_ID}}
# - run: fastlane upload_dev_to_testflight
# env:
# KEYCHAIN_NAME: ${{ secrets.KEYCHAIN_NAME }}
# KEYCHAIN_PASSWORD: ${{ secrets.KEYCHAIN_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 }}



Expand Down
2 changes: 1 addition & 1 deletion fastlane/Appfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@

gem "dotenv"

app_identifier("com.5ing.bibbi")
app_identifier(ENV["BUNDLE_ID"])
2 changes: 1 addition & 1 deletion fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ platform :ios do
new_build_number = latest_testflight_build_number() + 1

increment_build_number(
xcodeproj: "./14th-team5-iOS/App/App.xcodeproj",
xcodeproj: "#{PROJECT_PATH}",
build_number: new_build_number
)

Expand Down

0 comments on commit 96e4939

Please sign in to comment.