From d979269552771eba7d1aa1e6046edec22005d526 Mon Sep 17 00:00:00 2001 From: James Rich <2199651+jamesarich@users.noreply.github.com> Date: Thu, 26 Mar 2026 12:01:53 -0500 Subject: [PATCH] fix(ci): update APP_VERSION_NAME output reference in workflows (#4935) --- .github/workflows/promote.yml | 2 +- .github/workflows/release.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/promote.yml b/.github/workflows/promote.yml index a48b22bae..2fbba2b2a 100644 --- a/.github/workflows/promote.yml +++ b/.github/workflows/promote.yml @@ -67,7 +67,7 @@ jobs: prepare-build-info: runs-on: ubuntu-latest outputs: - APP_VERSION_NAME: ${{ steps.get_version_name.outputs.APP_VERSION_NAME }} + APP_VERSION_NAME: ${{ steps.prep_version.outputs.APP_VERSION_NAME }} APP_VERSION_CODE: ${{ steps.calculate_version_code.outputs.versionCode }} steps: - name: Checkout code diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 0711c0391..5087ba9d5 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -63,7 +63,7 @@ jobs: prepare-build-info: runs-on: ubuntu-latest outputs: - APP_VERSION_NAME: ${{ steps.get_version_name.outputs.APP_VERSION_NAME }} + APP_VERSION_NAME: ${{ steps.prep_version.outputs.APP_VERSION_NAME }} APP_VERSION_CODE: ${{ steps.calculate_version_code.outputs.versionCode }} env: GRADLE_CACHE_URL: ${{ secrets.GRADLE_CACHE_URL }}