From 42d6f15d3917f1e0a24b10f4e3bb263b327e495f Mon Sep 17 00:00:00 2001 From: lepapareil Date: Wed, 3 Mar 2021 14:43:55 +0100 Subject: [PATCH 1/2] replace _ by - on win64 exe and zip packages names --- .github/workflows/release.yml | 6 +++--- ci/windows/hurl.nsi | 2 +- contrib/windows/cmd_build.md | 2 +- contrib/windows/powershell_build.md | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 69e8c7f9009..6a048c7c346 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -108,7 +108,7 @@ jobs: # create zip $hurl_package_version = Get-Content .\target\win-package\version.txt cd .\target\win-package - Get-ChildItem -Path *.dll, *hurl.exe, *.txt | Compress-Archive -DestinationPath hurl_${hurl_package_version}_win64.zip + Get-ChildItem -Path *.dll, *hurl.exe, *.txt | Compress-Archive -DestinationPath hurl-${hurl_package_version}-win64.zip Get-ChildItem .\*win64.zip cd ..\.. # create installer @@ -122,5 +122,5 @@ jobs: with: name: release-win64-artifacts path: | - .\target\win-package\hurl_*_installer.exe - .\target\win-package\hurl_*_win64.zip + .\target\win-package\hurl-*-installer.exe + .\target\win-package\hurl-*-win64.zip diff --git a/ci/windows/hurl.nsi b/ci/windows/hurl.nsi index 24168a10602..4baeb8f654f 100644 --- a/ci/windows/hurl.nsi +++ b/ci/windows/hurl.nsi @@ -15,7 +15,7 @@ Name "hurl ${VERSION}" ; The file to write -OutFile "hurl_${VERSION}_installer.exe" +OutFile "hurl-${VERSION}-installer.exe" ; Request application privileges for Windows Vista and higher RequestExecutionLevel admin diff --git a/contrib/windows/cmd_build.md b/contrib/windows/cmd_build.md index a1580c360c1..02011f6bcf5 100644 --- a/contrib/windows/cmd_build.md +++ b/contrib/windows/cmd_build.md @@ -108,7 +108,7 @@ hurl.exe --version | cut -d" " -f2 > c:\hurl\target\win-package\version.txt ```cmd set /P hurl_package_version= Date: Wed, 3 Mar 2021 19:30:47 +0100 Subject: [PATCH 2/2] rename *installer.exe to *win64-installer.exe --- ci/windows/hurl.nsi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/windows/hurl.nsi b/ci/windows/hurl.nsi index 4baeb8f654f..00b8b11bf55 100644 --- a/ci/windows/hurl.nsi +++ b/ci/windows/hurl.nsi @@ -15,7 +15,7 @@ Name "hurl ${VERSION}" ; The file to write -OutFile "hurl-${VERSION}-installer.exe" +OutFile "hurl-${VERSION}-win64-installer.exe" ; Request application privileges for Windows Vista and higher RequestExecutionLevel admin