Skip to content

Commit

Permalink
[#169] Update github runner
Browse files Browse the repository at this point in the history
  • Loading branch information
doannimble committed Aug 12, 2023
1 parent e375a6f commit ceba494
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 7 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/ios_deploy_production_to_app_store.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,9 @@ jobs:
FASTLANE_SESSION: ${{ secrets.FASTLANE_SESSION }}
MATCH_PASSWORD: ${{ secrets.MATCH_PASSWORD }}
KEYCHAIN_PASSWORD: ${{ secrets.KEYCHAIN_PASSWORD }}
APP_STORE_KEY_ID: ${{ secrets.APP_STORE_KEY_ID }}
APP_STORE_ISSUER_ID: ${{ secrets.APP_STORE_ISSUER_ID }}
APPSTORE_CONNECT_API_KEY_BASE64: ${{ secrets.APPSTORE_CONNECT_API_KEY_BASE64 }}
GITHUB_RUN_NUMBER: ${{ secrets.GITHUB_RUN_NUMBER }}
steps:
- name: Check out
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ios_deploy_production_to_testflight.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ jobs:
FASTLANE_SESSION: ${{ secrets.FASTLANE_SESSION }}
MATCH_PASSWORD: ${{ secrets.MATCH_PASSWORD }}
KEYCHAIN_PASSWORD: ${{ secrets.KEYCHAIN_PASSWORD }}
GITHUB_RUN_NUMBER: ${{ secrets.GITHUB_RUN_NUMBER }}
APP_STORE_KEY_ID: ${{ secrets.APP_STORE_KEY_ID }}
APP_STORE_ISSUER_ID: ${{ secrets.APP_STORE_ISSUER_ID }}
APPSTORE_CONNECT_API_KEY_BASE64: ${{ secrets.APPSTORE_CONNECT_API_KEY_BASE64 }}
GITHUB_RUN_NUMBER: ${{ secrets.GITHUB_RUN_NUMBER }}
steps:
- name: Check out
uses: actions/checkout@v3
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,10 @@ jobs:
FASTLANE_SESSION: ${{#mustacheCase}}secrets.FASTLANE_SESSION{{/mustacheCase}}
MATCH_PASSWORD: ${{#mustacheCase}}secrets.MATCH_PASSWORD{{/mustacheCase}}
KEYCHAIN_PASSWORD: ${{#mustacheCase}}secrets.KEYCHAIN_PASSWORD{{/mustacheCase}}
GITHUB_RUN_NUMBER: $secrets.GITHUB_RUN_NUMBER
APP_STORE_KEY_ID: ${{ secrets.APP_STORE_KEY_ID }}
APP_STORE_ISSUER_ID: ${{ secrets.APP_STORE_ISSUER_ID }}
APPSTORE_CONNECT_API_KEY_BASE64: ${{ secrets.APPSTORE_CONNECT_API_KEY_BASE64 }}
GITHUB_RUN_NUMBER: ${{ secrets.GITHUB_RUN_NUMBER }}
steps:
- name: Check out
uses: actions/checkout@v3
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
name: ios-deploy-to-app-store
name: ios-deploy-production-to-app-store
on:
# Trigger the workflow on push action
push:
branches:
- develop
- main

jobs:
build_and_upload_to_app_store:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
name: ios-deploy-to-testflight
name: ios-deploy-production-to-testflight
on:
# Trigger the workflow on push action
push:
branches:
- develop
- main

jobs:
build_and_upload_to_testflight:
Expand All @@ -18,7 +18,10 @@ jobs:
FASTLANE_SESSION: ${{ secrets.FASTLANE_SESSION }}
MATCH_PASSWORD: ${{ secrets.MATCH_PASSWORD }}
KEYCHAIN_PASSWORD: ${{ secrets.KEYCHAIN_PASSWORD }}
GITHUB_RUN_NUMBER: $secrets.GITHUB_RUN_NUMBER
APP_STORE_KEY_ID: ${{ secrets.APP_STORE_KEY_ID }}
APP_STORE_ISSUER_ID: ${{ secrets.APP_STORE_ISSUER_ID }}
APPSTORE_CONNECT_API_KEY_BASE64: ${{ secrets.APPSTORE_CONNECT_API_KEY_BASE64 }}
GITHUB_RUN_NUMBER: ${{ secrets.GITHUB_RUN_NUMBER }}
steps:
- name: Check out
uses: actions/checkout@v3
Expand Down

0 comments on commit ceba494

Please sign in to comment.