From c13023187858b78303825bf3aeba903f03557f1b Mon Sep 17 00:00:00 2001 From: Sergii Pylypenko Date: Tue, 11 Jan 2022 23:34:16 +0200 Subject: [PATCH] Better .apk file name --- .github/workflows/ballfield.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ballfield.yml b/.github/workflows/ballfield.yml index f40b68fc4..c46ec36a6 100644 --- a/.github/workflows/ballfield.yml +++ b/.github/workflows/ballfield.yml @@ -80,11 +80,11 @@ jobs: - name: Package run: | mkdir -p upload/ - mv project/app/build/outputs/apk/release/app-release.apk upload/ + mv project/app/build/outputs/apk/release/app-release.apk upload/${APP_NAME}.apk # Github actions is dumb and won't let you download single files from artifacts, so break up the artifacts instead - uses: actions/upload-artifact@v2 with: - name: "android-apk" + name: "${APP_NAME}" path: upload if-no-files-found: error