From 0201894215e60c55e25a73a9afc8a15c6a869ac0 Mon Sep 17 00:00:00 2001 From: Samuel Newman Date: Fri, 24 Jul 2026 20:59:53 +0300 Subject: [PATCH] show build numbers in ci summary --- .github/workflows/build-submit-android.yml | 10 ++++++++++ .github/workflows/build-submit-ios.yml | 10 ++++++++++ 2 files changed, 20 insertions(+) diff --git a/.github/workflows/build-submit-android.yml b/.github/workflows/build-submit-android.yml index a2261536e6..f4c1fd57a1 100644 --- a/.github/workflows/build-submit-android.yml +++ b/.github/workflows/build-submit-android.yml @@ -132,6 +132,16 @@ jobs: if-no-files-found: error path: build.aab + - name: 📝 Write build summary + env: + REMOTE_VERSION_CODE: ${{ steps.get-build-info.outputs.BSKY_ANDROID_VERSION_CODE }} + run: | + { + echo "### Android build number" + echo + echo "\`$REMOTE_VERSION_CODE\`" + } >> "$GITHUB_STEP_SUMMARY" + submit: name: Submit to Google Play runs-on: ubuntu-latest diff --git a/.github/workflows/build-submit-ios.yml b/.github/workflows/build-submit-ios.yml index 2085aabaa4..574da9f214 100644 --- a/.github/workflows/build-submit-ios.yml +++ b/.github/workflows/build-submit-ios.yml @@ -211,6 +211,16 @@ jobs: ${{ env.BUILD_DIR }}/Bluesky.ipa ${{ env.BUILD_DIR }}/Bluesky.app.dSYM.zip + - name: 📝 Write build summary + env: + REMOTE_BUILD_NUMBER: ${{ steps.get-build-info.outputs.BSKY_IOS_BUILD_NUMBER }} + run: | + { + echo "### iOS build number" + echo + echo "\`$REMOTE_BUILD_NUMBER\`" + } >> "$GITHUB_STEP_SUMMARY" + submit: name: Submit iOS # Submission and dSYM upload are I/O bound and don't need the xlarge builder.