From 0593765e3bda407b4612344fefde10afdc750f77 Mon Sep 17 00:00:00 2001 From: Swen van Zanten Date: Mon, 5 Jul 2021 01:33:53 +0200 Subject: [PATCH] add App Store Connect upload step to ios workflow --- .github/workflows/ios.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ios.yml b/.github/workflows/ios.yml index c1fd13c..9f4e9ad 100644 --- a/.github/workflows/ios.yml +++ b/.github/workflows/ios.yml @@ -58,7 +58,7 @@ jobs: - name: Install iOS Cocoa Pods run: pod install working-directory: ios - - name: Build with Xcode and upload to AppStore Connect + - name: Build with Fastlane uses: yukiarrr/ios-build-action@v1.4.0 with: project-path: ${{ github.workspace }}/ios/MultiCash.xcodeproj @@ -72,6 +72,9 @@ jobs: export-method: app-store configuration: Release scheme: MultiCash + - name: Upload to App Store Connect + run: | + xcrun altool --upload-app -t ios -f "${{ github.workspace }}/ios/app-release.ipa" -u "${{ secrets.IOS_UPLOAD_USER }}" -p "${{ secrets.IOS_UPLOAD_PASSWORD }}" - name: Upload Release to GitHub uses: softprops/action-gh-release@v1 with: