Skip to content

Commit

Permalink
chore(): pass secrets to github env
Browse files Browse the repository at this point in the history
  • Loading branch information
Dawqss committed Sep 27, 2024
1 parent 49e2df4 commit 212d5c7
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci-pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -98,10 +98,10 @@ jobs:
- name: Run Fastlane Lane
run: |
cd ios
bundle exec fastlane beta api_key_id="${{ secrets.APP_STORE_CONNECT_KEY_IDENTIFIER }}" issuer_id="${{ secrets.APP_STORE_CONNECT_ISSUER_ID }}"
env:
APP_STORE_CONNECT_KEY_IDENTIFIER: ${{ secrets.APP_STORE_CONNECT_KEY_IDENTIFIER }}
APP_STORE_CONNECT_ISSUER_ID: ${{ secrets.APP_STORE_CONNECT_ISSUER_ID }}
bundle exec fastlane beta api_key_id:${{ secrets.APP_STORE_CONNECT_KEY_IDENTIFIER }} issuer_id:${{ secrets.APP_STORE_CONNECT_ISSUER_ID }}
# env:
# APP_STORE_CONNECT_KEY_IDENTIFIER: ${{ secrets.APP_STORE_CONNECT_KEY_IDENTIFIER }}
# APP_STORE_CONNECT_ISSUER_ID: ${{ secrets.APP_STORE_CONNECT_ISSUER_ID }}

# Fifth job: Build Android
# build_android:
Expand Down

0 comments on commit 212d5c7

Please sign in to comment.