ilharp / sign-android-release

A GitHub action to sign an APK or AAB
https://github.com/marketplace/actions/sign-android-release-2
MIT License
43 stars 10 forks source link

Verify on the different naming #14

Closed yong2khoo-lm closed 1 year ago

yong2khoo-lm commented 1 year ago

Here I have question on the output file naming

image

As noticed, the output files contain:

APK

...unsigned-signed.apk
...signed.apk

AAB

...signed.aab
...aab
...-temp.aab

Can i assume that, the -signed.apk and -signed.aab are the final one?

ilharp commented 1 year ago

Currently, yes. The signed file will be suffixed with -signed, such as app.apk => app-signed.apk.

But a better solution is to use the signedFile / signedFiles output of this action, as shown in README. You can also find more practical examples here and here.

Feel free to reopen this issue if you have any other questions.