Skip to content

Commit 3679dfe

Browse files
authored
Update binary paths in GitHub Actions workflow
1 parent 2604c40 commit 3679dfe

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/main.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,19 +17,19 @@ jobs:
1717
- os: windows-latest
1818
configure_preset: win64
1919
build_preset: win64-rel
20-
binary_path: build/win64/Release/msdf-atlas-gen.exe
20+
binary_path: build/win64/bin/Release/msdf-atlas-gen.exe
2121
archive_name: msdf-atlas-gen-win64.zip
2222
asset_name: msdf-atlas-gen.exe
2323
- os: ubuntu-latest
2424
configure_preset: linux-vcpkg-rel
2525
build_preset: linux-vcpkg-rel
26-
binary_path: build/linux-rel/msdf-atlas-gen
26+
binary_path: bin/msdf-atlas-gen
2727
archive_name: msdf-atlas-gen-linux.tar.gz
2828
asset_name: msdf-atlas-gen
2929
- os: macos-latest
3030
configure_preset: osx-vcpkg-rel
3131
build_preset: osx-vcpkg-rel
32-
binary_path: build/osx-rel/msdf-atlas-gen
32+
binary_path: bin/msdf-atlas-gen
3333
archive_name: msdf-atlas-gen-macos.tar.gz
3434
asset_name: msdf-atlas-gen
3535

@@ -60,7 +60,7 @@ jobs:
6060
"${{ matrix.binary_path }}" -help || true
6161
else
6262
echo "Binary NOT found at ${{ matrix.binary_path }}"
63-
find build -name msdf*
63+
find . -name ${{ matrix.binary_path }}
6464
exit 1
6565
fi
6666

0 commit comments

Comments
 (0)