Skip to content

Commit

Permalink
Modified Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
steffenfritz committed Oct 28, 2024
1 parent 869c0ff commit 54ab51b
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/build_windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,15 @@ jobs:
Write-Error "DLL file not found in yara_install directory!"
exit 1
}
$dllAFile = Get-ChildItem -Path "$env:USERPROFILE\\yara_install\\lib" -Recurse -Filter "yara_x_capi.dll.a" | Select-Object -First 1
if (-not $dllFile) {
Write-Error "DLL object file not found in yara_install directory!"
exit 1
}
Copy-Item -Path $dllFile.FullName -Destination "$env:GITHUB_WORKSPACE\\artifacts"
Copy-Item -Path $dllAFile.FullName -Destination "$env:GITHUB_WORKSPACE\\artifacts"
Copy-Item "$env:GITHUB_WORKSPACE\\FileTrove\\cmd\\ftrove\\ftrove.exe" -Destination "$env:GITHUB_WORKSPACE\\artifacts"
# Erstelle ein ZIP-Archiv der Artefakte im GITHUB_WORKSPACE
Expand Down

0 comments on commit 54ab51b

Please sign in to comment.