From 8a01e5a952eb132a9222cb1dcc72ecccc70e5d8f Mon Sep 17 00:00:00 2001 From: ypoplavs Date: Wed, 30 Oct 2024 18:42:29 +0200 Subject: [PATCH] update path --- .github/workflows/release.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index aade246679..0f57fe6271 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -270,6 +270,7 @@ jobs: totp_secret: ${{ secrets.ES_TOTP_SECRET }} # Path of code object to be signed. (DLL, JAR, EXE, MSI files vb... ) file_path: testkube.msi + output_path: ${GITHUB_WORKSPACE}/artifacts # Directory where signed code object(s) will be written. # Scan code before sign malware_block: false @@ -292,7 +293,7 @@ jobs: id: checksum run: | $installer_name = $env:MSI_NAME - $hash=Get-FileHash testkube.msi + $hash=Get-FileHash ${GITHUB_WORKSPACE}/artifacts/testkube.msi $hash.Hash + " " + $installer_name + ".msi" >> msi_checksum.txt echo "::set-output name=INSTALLER_NAME::${installer_name}"