From aadb525b7f2d6d59b6b116ac0c87aebd4a8be763 Mon Sep 17 00:00:00 2001 From: Alexander Borsuk <170263+biodranik@users.noreply.github.com> Date: Wed, 29 Nov 2023 22:39:33 +0100 Subject: [PATCH] [github] Show iOS build version for DSYM artifacts (#6730) Signed-off-by: Alexander Borsuk --- .github/workflows/ios-beta.yaml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ios-beta.yaml b/.github/workflows/ios-beta.yaml index 36525ee95b..2dc0999398 100644 --- a/.github/workflows/ios-beta.yaml +++ b/.github/workflows/ios-beta.yaml @@ -66,7 +66,9 @@ jobs: rm -rf ./private.git - name: Compile and upload to TestFlight - run: ./fastlane.sh upload_testflight + run: | + echo "IOS_VERSION=$(tools/unix/version.sh ios_version)-$(tools/unix/version.sh ios_build)" >> "$GITHUB_ENV" + ./fastlane.sh upload_testflight env: APPSTORE_CERTIFICATE_PASSWORD: '${{ secrets.APPSTORE_CERTIFICATE_PASSWORD }}' working-directory: xcode @@ -74,6 +76,6 @@ jobs: - name: Upload ipa and DSYMs artifacts uses: actions/upload-artifact@v3 with: - name: ipa and DSYM archive + name: ipa and DSYM archive ${{ env.IOS_VERSION }} path: xcode/build/* if-no-files-found: error