From bfac3f237c872fe81cd7e6e9c1345da955c5ccf9 Mon Sep 17 00:00:00 2001 From: c2biz Date: Fri, 17 May 2024 18:17:08 -0400 Subject: [PATCH] fix artifact path --- .github/workflows/autorelease.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/autorelease.yml b/.github/workflows/autorelease.yml index 092b3863..40ff4463 100644 --- a/.github/workflows/autorelease.yml +++ b/.github/workflows/autorelease.yml @@ -47,8 +47,8 @@ jobs: mkdir compiled $Version = git.exe describe --tags --abbrev=0 Get-Content -Path extension.json | .\jq.exe --arg ver "$Version" '.version |= $ver' > ./compiled/extension.json - Copy-Item -Path .\x64\mimikatz.dll -Destination compiled\mimikatz.x64.dll - Copy-Item -Path .\Win32\mimikatz.dll -Destination compiled\mimikatz.x86.dll + Copy-Item -Path .\x64\powerkatz.dll -Destination compiled\powerkatz.x64.dll + Copy-Item -Path .\Win32\powerkatz.dll -Destination compiled\powerkatz.x86.dll cd compiled tar.exe -czvf ..\mimikatz.tar.gz . cd ..