Skip to content

Commit

Permalink
adding retry step to parse cab
Browse files Browse the repository at this point in the history
  • Loading branch information
felippeb committed Dec 18, 2024
1 parent 5a7095c commit 9734b30
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/parse_cab.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,12 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v4
- name: Parse Cab Chunk ${{ matrix.chunk }}
run: . .\wsusscn2_parse.ps1 -Chunk ${{ matrix.chunk }}
id: parse-cab-chunk
uses: nick-fields/retry@v3
with:
command: . .\wsusscn2_parse.ps1 -Chunk ${{ matrix.chunk }}
max_attempts: 3
timeout_minutes: 360
- name: Get Remaining Disk Space
run: |
Get-Volume
Expand Down

0 comments on commit 9734b30

Please sign in to comment.