2019-11-06 09:33:51 -05:00
2019-11-07 07:11:10 -05:00
2019-11-06 09:33:51 -05:00
2019-11-07 07:11:58 -05:00
2019-11-07 07:08:18 -05:00
2019-11-07 07:11:10 -05:00
2019-11-07 10:00:51 -05:00
2019-11-06 09:33:51 -05:00
2019-11-06 09:33:51 -05:00
2019-11-07 07:08:18 -05:00
2019-11-07 07:08:18 -05:00
2019-11-07 10:00:51 -05:00
2019-11-06 09:33:51 -05:00

Sign Android Release Action

This action will help you sign an Android .apk or .aab (Android App Bundle) file for release.

Inputs

releaseDirectory

Required: The relative directory path in your project where your Android release file will be located

signingKeyBase64

Required: The base64 encoded signing key used to sign your app

alias

Required: The alias of your signing key

keyStorePassword

Required: The password to your signing keystore

keyPassword

Required: The private key password for your signing keystore

Outputs

signedReleaseFile

The path to the signed release file from this action

ENV: SIGNED_RELEASE_FILE

This also set's an environment variable that points to the signed release file

Example usage

uses: r0adkll/sign-android-release@v1
with:
  releaseDirectory: /app/build/outputs/apk/release
  signingKeyBase64: ${{ secrets.SIGNING_KEY }}
  alias: ${{ secrets.ALIAS }}
  keyStorePassword: ${{ secrets.KEY_STORE_PASSWORD }}
  keyPassword: ${{ secrets.KEY_PASSWORD }}
S
Description
No description provided
Readme MIT
55 MiB
Languages
JavaScript 61.2%
TypeScript 38.4%
Shell 0.4%