mirror of
https://github.com/Dr-Blank/Vaani.git
synced 2025-12-24 03:49:30 +00:00
fix: create Android debug keystore directory before build
Add step to create and set permissions for ~/.config/.android directory to fix 'Unable to create debug keystore' error during debug APK builds.
This commit is contained in:
parent
3da7b60ded
commit
f29159e55b
1 changed files with 5 additions and 0 deletions
5
.github/workflows/feature-branch-build.yaml
vendored
5
.github/workflows/feature-branch-build.yaml
vendored
|
|
@ -28,6 +28,11 @@ jobs:
|
|||
run: |
|
||||
yes | sudo $ANDROID_HOME/cmdline-tools/latest/bin/sdkmanager --licenses
|
||||
|
||||
- name: Prepare Android debug keystore directory
|
||||
run: |
|
||||
mkdir -p $HOME/.config/.android
|
||||
chmod -R 755 $HOME/.config/.android
|
||||
|
||||
- name: Run build_runner to generate code
|
||||
run: flutter pub run build_runner build --delete-conflicting-outputs
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue