Skip to content
This repository was archived by the owner on Feb 15, 2026. It is now read-only.

Commit 6723a09

Browse files
authored
fix: Fail on compression
1 parent 16f1013 commit 6723a09

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -124,11 +124,11 @@ jobs:
124124
}
125125
126126
- name: Compress artifact 📦
127-
run: 7z a -t7z -mx=6 -m0=LZMA2 -ms=on -mmt=8 -sdel -- ${{ needs.build.outputs.zipname }}.7z .\output\${{ needs.build.outputs.zipname }}\*
127+
run: 7z a -t7z -mx=6 -m0=LZMA2 -ms=on -mmt=8 -sdel -- "${{ needs.build.outputs.zipname }}.7z" ".\output\${{ needs.build.outputs.zipname }}\*"
128128

129129
- name: File Checksum ✔️
130130
id: run
131-
run: ("hash=" + $(Get-FileHash -Path ${{ needs.build.outputs.zipname }}.7z -Algorithm SHA256).Hash.ToLower().ToString()) | Out-File -FilePath $env:GITHUB_OUTPUT -Encoding UTF8 -Append
131+
run: ("hash=" + $(Get-FileHash -Path "${{ needs.build.outputs.zipname }}.7z" -Algorithm SHA256).Hash.ToLower().ToString()) | Out-File -FilePath $env:GITHUB_OUTPUT -Encoding UTF8 -Append
132132

133133
- name: Update build to release 🤌
134134
uses: softprops/action-gh-release@v2.0.4

0 commit comments

Comments
 (0)