diff options
-rw-r--r-- | .github/workflows/qatest.yaml | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/.github/workflows/qatest.yaml b/.github/workflows/qatest.yaml index 7bdb8cb9aa..9b5e0173f9 100644 --- a/.github/workflows/qatest.yaml +++ b/.github/workflows/qatest.yaml @@ -514,6 +514,9 @@ jobs: # Copy the app to the Applications folder (or specified install path) cp -R "$APP_PATH" "${{ matrix.install-path }}" + # Fix permissions before copying + chmod -R u+rw "$APP_PATH" + # Verify the app was copied successfully if [ ! -d "${{ matrix.install-path }}/$(basename "$APP_PATH")" ]; then echo "❌ Error: Failed to install application to ${{ matrix.install-path }}!" |