Skip to content

Commit

Permalink
ci: fix
Browse files Browse the repository at this point in the history
  • Loading branch information
bpetit committed Jan 31, 2024
1 parent 617c763 commit e4bf822
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/exe-release-prometheuspush.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ on:
branches: [ '336-proper-handling-of-windows-service-management' ]

env:
WRD_VERSION: v0.0.3
WRD_VERSION: v0.0.4
WRD_BASE_URL: https://github.com/hubblo-org/windows-rapl-driver/releases/download

jobs:
Expand All @@ -36,7 +36,8 @@ jobs:
$dest = "DriverLoader.exe"
$url = "${{ env.WRD_BASE_URL }}/${{ env.WRD_VERSION }}/DriverLoader.exe"
echo ($url -replace '"', "")
Invoke-WebRequest -Uri ($url -replace '"', "") -OutFile $dest
echo ($dest -replace '"', "")
Invoke-WebRequest -Uri ($url -replace '"', "") -OutFile ($dest -replace '"', "")
$dest = "ScaphandreDrv.cat"
$url = "${{ env.WRD_BASE_URL }}/${{ env.WRD_VERSION }}/ScaphandreDrv.cat"
Invoke-WebRequest -Uri ($url -replace '"', "") -OutFile $dest
Expand Down

0 comments on commit e4bf822

Please sign in to comment.