mirror of
https://github.com/Dr-Blank/Vaani.git
synced 2025-08-05 18:44:57 +02:00
add instructions to add keystore
This commit is contained in:
parent
6c50821682
commit
77f7a7e3b5
2 changed files with 15 additions and 1 deletions
2
.github/workflows/flutter_release.yaml
vendored
2
.github/workflows/flutter_release.yaml
vendored
|
@ -50,7 +50,7 @@ jobs:
|
|||
run: flutter build apk --release
|
||||
|
||||
- name: Rename Universal APK
|
||||
run: mv build/app/outputs/flutter-apk/{app-release,app-release-universal}.apk
|
||||
run: mv build/app/outputs/flutter-apk/{app-release,app-universal-release}.apk
|
||||
|
||||
- name: Build App Bundle
|
||||
run: flutter build appbundle --release
|
||||
|
|
|
@ -153,6 +153,20 @@ Vaani uses Git submodules to manage interconnected components. This means each s
|
|||
- Specify if changes affect specific submodules
|
||||
- Ensure all CI checks pass
|
||||
|
||||
### Signing the app
|
||||
|
||||
once the keystore is created, you can sign the app with the keystore.
|
||||
|
||||
but for github action you need to make a base64 encoded string of the keystore.
|
||||
|
||||
```bash
|
||||
# convert keystore to base64
|
||||
cat android/key.properties | base64 > key.base64
|
||||
|
||||
# convert keystore to base64
|
||||
cat android/upload.jks | base64 > keystore.base64
|
||||
```
|
||||
|
||||
## Communication
|
||||
|
||||
* [Open an Issue](https://github.com/Dr-Blank/Vaani/issues)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue