Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,7 @@ runs:
- name: Create venv for tools
run: |
unset UV_SYSTEM_PYTHON
unset UV_PYTHON

uv venv \
/tmp/baipp \
Expand All @@ -98,6 +99,7 @@ runs:
- name: Install our tools
run: |
unset UV_SYSTEM_PYTHON
unset UV_PYTHON

uv pip sync \
${{ github.action_path }}/requirements/tools.txt
Expand All @@ -116,6 +118,7 @@ runs:
- name: Build package
run: |
unset UV_SYSTEM_PYTHON
unset UV_PYTHON

echo Setting SOURCE_DATE_EPOCH to $(git log -1 --pretty=%ct).
export SOURCE_DATE_EPOCH=$(git log -1 --pretty=%ct)
Expand Down