From c18d1693b8857d810e997873169f27d6846af26a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stephan=20G=C3=BCnther?= Date: Thu, 2 Dec 2021 01:41:07 +0100 Subject: [PATCH] Use relative paths to create symbolic links --- .github/workflows/build.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 5284f3ca35..01218d5e0a 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -36,7 +36,9 @@ jobs: - name: "Check Python install location contents" if: ${{ matrix.platform == 'windows-latest' }} run: | - New-Item -ItemType SymbolicLink -Path ${{ env.pythonLocation }}/python3.7.exe -Target ${{ env.pythonLocation }}/python.exe + cd ${{ env.pythonLocation }} + New-Item -ItemType SymbolicLink ` + -Path python3.7.exe -Target ./python.exe echo ${{ env.pythonLocation }} ls ${{ env.pythonLocation }} - uses: "actions/setup-python@v2"