diff options
author | AtlasLinden <114031241+AtlasLinden@users.noreply.github.com> | 2025-07-09 14:14:40 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-07-09 14:14:40 -0700 |
commit | 7b4cdd3040e1ebcd37c298fd97ef03ea41c65c1b (patch) | |
tree | 5cd8d4a12ecfb42ed685724fdbbcc2328b4c7eb0 | |
parent | 8c6e766311b13ab3f8494f0db6400e82392f6660 (diff) |
Adjust permission before copying app
-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 }}!" |