From 3bbc9280b56d40bf4ce0e88a05913a1d28ff52ab Mon Sep 17 00:00:00 2001 From: Michachatz <121869403+Michatec@users.noreply.github.com> Date: Wed, 15 Apr 2026 07:18:42 +0200 Subject: [PATCH] Refactor gradle-publish.yml --- .github/workflows/gradle-publish.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/gradle-publish.yml b/.github/workflows/gradle-publish.yml index c2a8a6a..28c2f66 100644 --- a/.github/workflows/gradle-publish.yml +++ b/.github/workflows/gradle-publish.yml @@ -73,10 +73,10 @@ jobs: echo "$SIGN_KEY" | base64 -d > key.der ${{ env.APKSIGNER }} sign --key key.der --cert cert.der app-release-aligned.apk rm cert.der key.der - mv app-release-aligned.apk Radio.${{ env.VERSION_NAME }}-release.apk + mv app-release-aligned.apk Radio_${{ env.VERSION_NAME }}-release.apk - name: Upload artifact uses: actions/upload-artifact@v7 with: name: Radio - path: Radio.${{ env.VERSION_NAME }}-release.apk + path: Radio_${{ env.VERSION_NAME }}-release.apk