From fb568a8c52c1ae18bd7ea513f4fcfb162cc1181c Mon Sep 17 00:00:00 2001 From: c2biz Date: Fri, 17 May 2024 15:36:06 -0400 Subject: [PATCH] update autorelease --- .github/workflows/autorelease.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/.github/workflows/autorelease.yml b/.github/workflows/autorelease.yml index faa0f3d1..6d5f5205 100644 --- a/.github/workflows/autorelease.yml +++ b/.github/workflows/autorelease.yml @@ -34,10 +34,32 @@ jobs: - name: MSBuild x64 run: | msbuild.exe .\mimikatz.sln /p:Configuration=Release /p:Platform="x64" + continue-on-error: true + + - name: Check for mimikatz x64 artifact + run: | + if (Test-Path ".\x64\mimikatz.dll") { + Write-Output "mimikatz x64 build succeeded." + } else { + Write-Output "mimikatz x64 build failed." + exit 1 + } + shell: pwsh - name: MSBuild Win32 run: | msbuild.exe .\mimikatz.sln /p:Configuration=Release /p:Platform="Win32" + continue-on-error: true + + - name: Check for mimikatz x32 artifact + run: | + if (Test-Path ".\Win32\mimikatz.dll") { + Write-Output "mimikatz x86 build succeeded." + } else { + Write-Output "mimikatz x86 build failed." + exit 1 + } + shell: pwsh - name: Build Package # Powershell is utter fucking trash.