From c2acdafcdf2f90cf2b8a31c49d2e77bad7760013 Mon Sep 17 00:00:00 2001 From: Dirk Hohndel Date: Wed, 10 Jan 2024 16:08:48 -0800 Subject: [PATCH] build-system: fix the APK filename for release upload Signed-off-by: Dirk Hohndel --- .github/workflows/android.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/android.yml b/.github/workflows/android.yml index 7d996ede0..f904cb16d 100644 --- a/.github/workflows/android.yml +++ b/.github/workflows/android.yml @@ -77,7 +77,7 @@ jobs: prerelease: false fail_on_unmatched_files: true files: | - "$GITHUB_WORKSPACE"/Subsurface-mobile*.apk + Subsurface-mobile-${{ steps.version_number.outputs.version }}.apk - name: delete the keystore if: github.event_name == 'push'