Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
YumNumm committed Apr 9, 2024
1 parent 154ba9b commit 37ff90b
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/deploy-android.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@ name: Deploy Android

on:
push:
branches: [main, develop, release/*]
branches:
- develop
- fix/ios-deploy
workflow_dispatch:

jobs:
Expand Down
7 changes: 4 additions & 3 deletions .github/workflows/deploy-ios.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@ jobs:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 1
# Fetch all history for all tags and branches
fetch-depth: 0

- name: Set up ssh
run: |
Expand Down Expand Up @@ -138,15 +139,15 @@ jobs:
-configuration Release archive \
-archivePath build/ios/Runner.xcarchive \
CODE_SIGNING_REQUIRED=NO \
CODE_SIGNING_ALLOWED=NO
CODE_SIGNING_ALLOWED=NO | xcbeautify
xcodebuild -exportArchive \
-archivePath build/ios/Runner.xcarchive \
-exportOptionsPlist ios/ExportOptions.plist \
-exportPath build/ios/ipa -allowProvisioningUpdates \
-authenticationKeyIssuerID ${{ secrets.APP_STORE_CONNECT_API_KEY_ISSUER_ID }} \
-authenticationKeyID ${{ secrets.APP_STORE_CONNECT_API_KEY_ID }} \
-authenticationKeyPath `pwd`/AuthKey_NGL2W4BQP6.p8
-authenticationKeyPath `pwd`/AuthKey_NGL2W4BQP6.p8 | xcbeautify
- name: Upload to App Store Connect
working-directory: app/ios
Expand Down

0 comments on commit 37ff90b

Please sign in to comment.