mirror of
https://github.com/Dr-Blank/Vaani.git
synced 2025-12-24 11:59:30 +00:00
fix: use sudo for chmod on Android keystore directory
The directory is created by the SDK license step with sudo, so we need sudo to change its permissions. This fixes the "Operation not permitted" error during the workflow run.
This commit is contained in:
parent
f29159e55b
commit
f750e8a3eb
1 changed files with 1 additions and 1 deletions
2
.github/workflows/feature-branch-build.yaml
vendored
2
.github/workflows/feature-branch-build.yaml
vendored
|
|
@ -31,7 +31,7 @@ jobs:
|
|||
- name: Prepare Android debug keystore directory
|
||||
run: |
|
||||
mkdir -p $HOME/.config/.android
|
||||
chmod -R 755 $HOME/.config/.android
|
||||
sudo 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