Skip to content

Commit

Permalink
add instructions to add keystore
Browse files Browse the repository at this point in the history
  • Loading branch information
Dr-Blank committed Dec 7, 2024
1 parent 6c50821 commit 77f7a7e
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/flutter_release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
14 changes: 14 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 77f7a7e

Please sign in to comment.