Skip to content

Commit 9e99471

Browse files
Fix Windows native build
1 parent 552e720 commit 9e99471

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@ jobs:
3232
run: |
3333
mkdir dist
3434
35-
if [[ "$SAFE_OS_NAME" == "windows" ]]; then
36-
BIN_PATH=$(find target -type f -name "*.exe" | head -n 1)
35+
if [[ "$OS_NAME" == "windows-latest" ]]; then
36+
BIN_PATH=$(find target -type f -name "jfiletreeprettyprinter.exe")
3737
else
3838
BIN_PATH=$(find target -type f -name "jfiletreeprettyprinter")
3939
fi

0 commit comments

Comments
 (0)