Skip to content

Commit

Permalink
Invoke mkdir before chown in Linux CI
Browse files Browse the repository at this point in the history
  • Loading branch information
bonigarcia committed Feb 26, 2025
1 parent 43c4b12 commit bb3318b
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,10 @@ jobs:
with:
timeout_minutes: 30
max_attempts: 2
command: sudo chown 1200:1201 $WDM_DOCKERRECORDINGOUTPUT && mvn -B test -Dtest=!Record*
command: |
mkdir $WDM_DOCKERRECORDINGOUTPUT
sudo chown 1200:1201 $WDM_DOCKERRECORDINGOUTPUT
mvn -B test -Dtest=!Record*
- name: Install browsers in Mac
if: matrix.os == 'macos-latest'
run: |
Expand Down

0 comments on commit bb3318b

Please sign in to comment.