Skip to content

Commit 15b9477

Browse files
committed
Check diskspace
1 parent df7e14c commit 15b9477

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

.github/workflows/release-binaries.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -288,6 +288,11 @@ jobs:
288288
with:
289289
build-prefix: ${{ steps.setup-stage.outputs.build-prefix }}
290290

291+
- name: Check Disk
292+
if: always()
293+
run: |
294+
Get-WmiObject -Class Win32_LogicalDisk -ComputerName <Server_Name> | ? {$_. DriveType -eq 3} | select DeviceID, {$_.Size /1GB}, {$_.FreeSpace /1GB}
295+
291296
upload-release-binaries:
292297
name: "Upload Release Binaries"
293298
needs:

0 commit comments

Comments
 (0)