Updated README to be more descriptive

of the signingKeyBase64 input
This commit is contained in:
Drew Heavner
2019-11-18 12:08:55 -05:00
committed by GitHub
parent bad9c14365
commit 204ae1749f
+8 -1
View File
@@ -12,6 +12,13 @@ This action will help you sign an Android `.apk` or `.aab` (Android App Bundle)
**Required:** The base64 encoded signing key used to sign your app
This action will directly decode this input to a file to sign your release with. You can prepare your key by running this command on *nix systems.
```bash
openssl base64 < some_signing_key.jks | tr -d '\n' | tee some_signing_key.jks.base64.txt
```
Then copy the contents of the `.txt` file to your GH secrets
### `alias`
**Required:** The alias of your signing key
@@ -44,4 +51,4 @@ with:
alias: ${{ secrets.ALIAS }}
keyStorePassword: ${{ secrets.KEY_STORE_PASSWORD }}
keyPassword: ${{ secrets.KEY_PASSWORD }}
```
```