Skip to content

Commit

Permalink
[chore] upload workflow order
Browse files Browse the repository at this point in the history
  • Loading branch information
mrs1669 committed May 12, 2024
1 parent 35931d2 commit 9597bff
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 18 deletions.
14 changes: 10 additions & 4 deletions .github/workflows/release-develop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,15 @@ jobs:
-authenticationKeyID ${{ secrets.APPLE_API_KEY_ID }} \
-authenticationKeyIssuerID ${{ secrets.APPLE_API_ISSUER_ID }}
- name: Upload IPA to App Store Connect
- name: Upload IPA file to App Store Connect
run: |
xcrun altool --upload-app -f app.ipa/IOSTemplateApp.ipa \
-u ${{ secrets.APPLE_ID }} \
-p ${{ secrets.APP_SPECIFIC_PASSWORD }} \
--type ios
-u ${{ secrets.APPLE_ID }} \
-p ${{ secrets.APP_SPECIFIC_PASSWORD }} \
--type ios
- name: Upload IPA file to GitHub
uses: actions/upload-artifact@v3
with:
name: IOSTemplateApp.ipa
path: app.ipa/IOSTemplateApp.ipa
22 changes: 8 additions & 14 deletions .github/workflows/release-main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,21 +52,15 @@ jobs:
-authenticationKeyID ${{ secrets.APPLE_API_KEY_ID }} \
-authenticationKeyIssuerID ${{ secrets.APPLE_API_ISSUER_ID }}
- name: Upload IPA to GitHub
uses: actions/upload-artifact@v3
with:
name: IOSTemplateApp.ipa
path: app.ipa/IOSTemplateApp.ipa

- name: Upload ipa file by Action
uses: actions/upload-artifact@v3
with:
name: IOSTemplateApp.ipa
path: app.ipa/IOSTemplateApp.ipa

- name: Upload IPA to App Store Connect
- name: Upload IPA file to App Store Connect
run: |
xcrun altool --upload-app -f app.ipa/IOSTemplateApp.ipa \
-u ${{ secrets.APPLE_ID }} \
-p ${{ secrets.APP_SPECIFIC_PASSWORD }} \
--type ios
--type ios
- name: Upload IPA file to GitHub
uses: actions/upload-artifact@v3
with:
name: IOSTemplateApp.ipa
path: app.ipa/IOSTemplateApp.ipa

0 comments on commit 9597bff

Please sign in to comment.