Skip to content

Commit

Permalink
update path
Browse files Browse the repository at this point in the history
  • Loading branch information
ypoplavs committed Oct 30, 2024
1 parent c8598ec commit 8a01e5a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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}"
Expand Down

0 comments on commit 8a01e5a

Please sign in to comment.