Skip to content

Commit 440d6d4

Browse files
committed
fix: binary path in workflow
1 parent edafb25 commit 440d6d4

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/python-package.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -46,17 +46,17 @@ jobs:
4646
- name: Build with Pyinstaller on MacOS
4747
run: |
4848
./script/build
49-
./publish/osx/mapillary_tools --version
49+
./dist/osx/mapillary_tools --version
5050
# Could run full integration tests with below but the binary is too slow to start up
51-
# MAPILLARY_TOOLS_EXECUTABLE=./publish/osx/mapillary_tools pytest tests/integration
51+
# MAPILLARY_TOOLS_EXECUTABLE=./dist/osx/mapillary_tools pytest tests/integration
5252
if: matrix.platform == 'macos-latest'
5353
- name: Build with Pyinstaller on Ubuntu
5454
run: |
5555
./script/build
56-
./publish/osx/mapillary_tools --version
56+
./dist/osx/mapillary_tools --version
5757
if: matrix.platform == 'ubuntu-latest'
5858
- name: Build with Pyinstaller on Windows
5959
run: |
6060
./script/build_win.bat
61-
./publish/win/mapillary_tools.exe --version
61+
./dist/win/mapillary_tools.exe --version
6262
if: matrix.platform == 'windows-latest'

0 commit comments

Comments
 (0)