Skip to content

Commit

Permalink
Fix pack windows files to zip
Browse files Browse the repository at this point in the history
  • Loading branch information
stulda committed May 31, 2024
1 parent c21f66f commit 1657148
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:
dotnet publish WebsiteCertificateChecker/WebsiteCertificateChecker.csproj --runtime "${{ matrix.target }}" -c Release -o "$release_name"
# Pack files
if [ "${{ matrix.target }}" == "win-x64" || "${{ matrix.target }}" == "win-arm64" ]; then
if [ "${{ matrix.target }}" == "win-x64" ] || [ "${{ matrix.target }}" == "win-arm64" ]; then
# Pack to zip for Windows
7z a -tzip "${release_name}.zip" "./${release_name}/*"
else
Expand Down

0 comments on commit 1657148

Please sign in to comment.