Skip to content

Commit

Permalink
Put the disk space step in the right job
Browse files Browse the repository at this point in the history
  • Loading branch information
twangboy committed Dec 18, 2024
1 parent 0ad9eeb commit e2c5706
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/parse_cab.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,9 @@ jobs:
uses: actions/checkout@v4
- name: Parse Cab Chunk ${{ matrix.chunk }}
run: . .\wsusscn2_parse.ps1 -Chunk ${{ matrix.chunk }}
- name: Get Remaining Disk Space
run: |
Get-Volume
- name: Upload Artifact Chunk ${{ matrix.chunk }}
uses: actions/upload-artifact@v4
with:
Expand Down Expand Up @@ -78,9 +81,6 @@ jobs:
$json_file = "wsus_updates.json"
$UTF8NoBOM = New-Object System.Text.UTF8Encoding $false
[System.IO.File]::WriteAllText($json_file, $json_data, $UTF8NoBOM)
- name: Get Disk Space Remaining
run: |
Get-Volume
- name: Upload Merged Artifact
uses: actions/upload-artifact@v4
with:
Expand Down

0 comments on commit e2c5706

Please sign in to comment.