Skip to content

Commit

Permalink
fix: deploy workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
YumNumm committed Apr 9, 2024
1 parent 37ff90b commit a9cce2f
Show file tree
Hide file tree
Showing 5 changed files with 1,078 additions and 3 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/deploy-android.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,11 @@ jobs:
echo "Host github.com \n\tIdentityFile ~/.ssh/id_ed25519\n\tUser git\n\tIdentityiesOnly yes" >> ~/.ssh/config
ssh-keyscan -H github.com >> ~/.ssh/known_hosts
- uses: actions/setup-java@v4
with:
distribution: "oracle"
java-version: "17"

# https://github.com/kuhnroyal/flutter-fvm-config-action
- name: Fetch flutter config
uses: kuhnroyal/flutter-fvm-config-action@v2
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/deploy-ios.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -144,13 +144,15 @@ jobs:
xcodebuild -exportArchive \
-archivePath build/ios/Runner.xcarchive \
-exportOptionsPlist ios/ExportOptions.plist \
-exportPath build/ios/ipa -allowProvisioningUpdates \
-exportPath . -allowProvisioningUpdates \
-authenticationKeyIssuerID ${{ secrets.APP_STORE_CONNECT_API_KEY_ISSUER_ID }} \
-authenticationKeyID ${{ secrets.APP_STORE_CONNECT_API_KEY_ID }} \
-authenticationKeyPath `pwd`/AuthKey_NGL2W4BQP6.p8 | xcbeautify
mv eqmonitor.ipa Runner.ipa
- name: Upload to App Store Connect
working-directory: app/ios
working-directory: app
env:
PRODUCE_USERNAME: ${{ secrets.PRODUCE_USERNAME }}
SPACESHIP_ONLY_ALLOW_INTERACTIVE_2FA: false
Expand Down
Loading

0 comments on commit a9cce2f

Please sign in to comment.