diff --git a/.github/workflows/ci_release.yml b/.github/workflows/ci_release.yml index 031f19d..c959524 100644 --- a/.github/workflows/ci_release.yml +++ b/.github/workflows/ci_release.yml @@ -303,7 +303,11 @@ jobs: if: runner.os == 'macOS' run: | python -m site - echo "PYTHON_SITE_PACKAGES_PATH=$(python -m site --user-site)" >> $GITHUB_ENV + - name: Set env getsitepackages + if: runner.os == 'macOS' + run: | + python -c 'import site; print(site.getsitepackages())' + echo "PYTHON_SITE_PACKAGES_PATH=$(python -c 'import site; print(site.getsitepackages())')" >> $GITHUB_ENV - name: Path for macOS arm64 if: matrix.os == 'macos-14' run: |