We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 13b0375 commit 1eb47cbCopy full SHA for 1eb47cb
.github/workflows/build-and-release.yml
@@ -22,8 +22,8 @@ jobs:
22
run: |
23
msbuild FreeControl.sln /p:Configuration=Release /p:Platform="Any CPU" /p:OutputPath="../output"
24
$filePath = "output/Freecontrol.exe"
25
- $sha256Hash = (Get-FileHash -Algorithm SHA256 -Path $filePath).Hash
26
- $sha256Hash > "output/SHA256"
+ $sha256Hash = (Get-FileHash -Algorithm SHA256 -Path $filePath).Hash.ToLower()
+ "``sha256: $sha256Hash``" > "output/SHA256"
27
28
- name: Release
29
uses: softprops/action-gh-release@v2
0 commit comments