Skip to content

Commit a6b207d

Browse files
SimonSchubertclaude
andcommitted
Fix signed APK filename in release workflow
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 20cbd7b commit a6b207d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/android.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
uses: actions/upload-artifact@v4
4343
with:
4444
name: signed-apk
45-
path: android/build/outputs/apk/release/android-release-unsigned-signed.apk
45+
path: android/build/outputs/apk/release/android-release-signed.apk
4646

4747
cli-linux:
4848
name: Build CLI (Linux)
@@ -436,7 +436,7 @@ jobs:
436436
- name: Rename assets
437437
run: |
438438
VERSION="${GITHUB_REF_NAME#v}"
439-
mv android-release-unsigned-signed.apk "LinuxCommandLibrary-${VERSION}-android.apk"
439+
mv android-release-signed.apk "LinuxCommandLibrary-${VERSION}-android.apk"
440440
mv *.dmg "LinuxCommandLibrary-${VERSION}-macos.dmg"
441441
mv *.msi "LinuxCommandLibrary-${VERSION}-windows.msi"
442442
mv *.deb "LinuxCommandLibrary-${VERSION}-linux.deb"

0 commit comments

Comments
 (0)