Skip to content

Commit 74265b7

Browse files
committed
correct issue with relative path for PYTHONBUILDDIR_X64 and PYTHONBUILDDIR
1 parent 385c165 commit 74265b7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/CI_build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,8 +56,8 @@ jobs:
5656
if: matrix.build_configuration == 'Release'
5757
working-directory: installer
5858
run: |
59-
$env:PYTHONBUILDDIR_X64='..\packages\python2.2.7.18\tools'
60-
$env:PYTHONBUILDDIR='..\packages\python2x86.2.7.18\tools'
59+
$env:PYTHONBUILDDIR_X64='${{ github.workspace }}\packages\python2.2.7.18\tools'
60+
$env:PYTHONBUILDDIR='${{ github.workspace }}\packages\python2x86.2.7.18\tools'
6161
Rename-Item -Path ".\buildPaths.bat.orig" -NewName "buildPaths.bat"
6262
$env:WIX_PATH="C:\Program Files (x86)\WiX Toolset v3.11\bin"
6363
$env:PATH = $env:PATH + ';' + $env:WIX_PATH

0 commit comments

Comments
 (0)