File tree Expand file tree Collapse file tree 1 file changed +9
-3
lines changed
Expand file tree Collapse file tree 1 file changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -39,18 +39,24 @@ jobs:
3939 uses : actions/upload-artifact@v4
4040 with :
4141 name : portable
42- path : build/vstudio/Release/Finestray.exe
42+ path : build/vstudio/Release/Finestray.exe*
43+
44+ - name : Create portable artifact digest
45+ run : $files = Get-ChildItem -Path .\build\vstudio\Release -Filter "*.exe"; foreach ($file in $files) { $hash = Get-FileHash $file.FullName; Out-File -FilePath "$($hash.Path).sha256" -InputObject $hash.Hash }
4346
4447 - name : Create installer artifact
4548 uses : actions/upload-artifact@v4
4649 with :
4750 name : installer
48- path : build/vstudio/Finestray-*-win64.exe
51+ path : build/vstudio/Finestray-*-win64.exe*
52+
53+ - name : Create installer artifact digest
54+ run : $files = Get-ChildItem -Path .\build\vstudio -Filter "*.exe"; foreach ($file in $files) { $hash = Get-FileHash $file.FullName; Out-File -FilePath "$($hash.Path).sha256" -InputObject $hash.Hash }
4955
5056 - name : Create release
5157 if : startsWith(github.ref, 'refs/tags/')
52585359 with :
5460 artifactErrorsFailBuild : true
55- artifacts : " build/vstudio/Release/Finestray.exe, build/vstudio/Finestray-*-* .exe"
61+ artifacts : " build/vstudio/Release/Finestray.exe* , build/vstudio/Finestray-*-win64 .exe* "
5662 generateReleaseNotes : true
You can’t perform that action at this time.
0 commit comments