Skip to content

Commit

Permalink
update autorelease
Browse files Browse the repository at this point in the history
  • Loading branch information
c2biz committed May 17, 2024
1 parent 688f338 commit fb568a8
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/autorelease.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit fb568a8

Please sign in to comment.