File tree Expand file tree Collapse file tree 3 files changed +7
-2
lines changed
actions/build-node-python Expand file tree Collapse file tree 3 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -198,6 +198,10 @@ runs:
198198 run : |
199199 # Run node and python in parallel
200200
201+ # In case uv sync is used, sync into the system python environment
202+ # https://github.com/astral-sh/uv/issues/8085#issuecomment-2406665798
203+ export UV_PROJECT_ENVIRONMENT="${pythonLocation}"
204+
201205 # Define the node sequence of commands
202206 node_job() {
203207 set -e
@@ -280,7 +284,9 @@ runs:
280284 RUN_PYTHON_LINT : ${{ inputs.run_python_lint }}
281285 RUN_PYTHON_TEST : ${{ inputs.run_python_test }}
282286 RUN_PYTHON_BUILD : ${{ inputs.run_python_build }}
287+ UV_SYSTEM_PYTHON : 1 # In case uv pip is used, install into the system python environment https://docs.astral.sh/uv/guides/integration/github/#using-uv-pip
283288 UV_HTTP_TIMEOUT : 300 # https://docs.astral.sh/uv/reference/environment/#uv_http_timeout
289+
284290 # Node
285291 - name : Save yarn cache
286292 uses : actions/cache/save@v4
Original file line number Diff line number Diff line change 110110 required : false
111111
112112env :
113- WORKFLOW_BRANCH : " main "
113+ WORKFLOW_BRANCH : " mp/release_pyproject " # TODO: Revert
114114 POSTGRES_HOSTNAME : postgres_${{ github.job }}_${{ inputs.deduplication_id }}_${{ github.run_id }}_${{ github.run_attempt }}
115115
116116permissions :
Original file line number Diff line number Diff line change 9797 fi
9898
9999 - name : Get release version from input
100- if : ${{ inputs.skip_branch_check == false }}
101100 id : get-release-version-from-input
102101 run : |
103102 input_release_version="${{ inputs.release_version }}"
You can’t perform that action at this time.
0 commit comments