Skip to content

Commit

Permalink
even more correct conditional syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
certifiedloud committed Jul 26, 2022
1 parent 4a4421e commit ee22218
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ jobs:
cp {README.md,UNLICENSE} "$staging/"
#cp CHANGELOG.md "$staging/doc/"
if [ "${{ matrix.target }}" = "i686-pc-windows-msvc" || "${{ matrix.target }}" = "x86_64-pc-windows-gnu" || "${{ matrix.target }}" = "x86_64-pc-windows-msvc" ]; then
if [ "${{ matrix.target }}" = "i686-pc-windows-msvc" ] || [ "${{ matrix.target }}" = "x86_64-pc-windows-gnu" ] || [ "${{ matrix.target }}" = "x86_64-pc-windows-msvc" ]; then
echo "Target is Windows Based"
cp "target/${{ matrix.target }}/release/tidy-viewer.exe" "$staging/"
7z a "$staging.zip" "$staging"
Expand Down

0 comments on commit ee22218

Please sign in to comment.