Skip to content

Commit 11441eb

Browse files
Fix Windows native build
1 parent 9e99471 commit 11441eb

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/create-github-release.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,8 @@ jobs:
3131
shell: bash
3232
run: |
3333
mkdir dist
34-
34+
35+
OS_NAME=${{ matrix.os }}
3536
if [[ "$OS_NAME" == "windows-latest" ]]; then
3637
BIN_PATH=$(find target -type f -name "jfiletreeprettyprinter.exe")
3738
else
@@ -55,6 +56,7 @@ jobs:
5556
*) SAFE_OS_NAME="$OS_NAME" ;;
5657
esac
5758
ZIP_NAME="jfiletreeprettyprinter-${VERSION}-${SAFE_OS_NAME}.zip"
59+
echo "Zip to create: $ZIP_NAME"
5860
5961
cd dist
6062
if [[ "$SAFE_OS_NAME" == "windows" ]]; then

0 commit comments

Comments
 (0)