From f750e8a3ebbcf3bd99de2b13478b1bd04bc36625 Mon Sep 17 00:00:00 2001 From: Claude Date: Thu, 20 Nov 2025 13:14:52 +0000 Subject: [PATCH] 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. --- .github/workflows/feature-branch-build.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/feature-branch-build.yaml b/.github/workflows/feature-branch-build.yaml index c50b55a..52f6753 100644 --- a/.github/workflows/feature-branch-build.yaml +++ b/.github/workflows/feature-branch-build.yaml @@ -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