Skip to content

Commit

Permalink
Add workaround for missing working-directory
Browse files Browse the repository at this point in the history
  • Loading branch information
cawilliamson committed Mar 19, 2024
1 parent d21bd79 commit 73e5508
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/build-gsi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,9 @@ jobs:
- name: perform full sources sync (with auto retry)
uses: nick-fields/retry@v3
with:
command: repo sync -c -j$(nproc --all) --force-sync --no-clone-bundle --no-tags
working-directory: src
command: |
cd src/
repo sync -c -j$(nproc --all) --force-sync --no-clone-bundle --no-tags
max_attempts: 3
retry_on: error
timeout_minutes: 20
Expand Down

0 comments on commit 73e5508

Please sign in to comment.