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
8 changes: 8 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,14 @@ jobs:
ref: ${{ needs.verify-version.outputs.tag }}
fetch-depth: 0 # setuptools-scm needs full history + tags

# Inside the manylinux container the workspace is owned by a different
# UID than root, so git refuses to read it ("dubious ownership") and
# setuptools-scm version resolution fails during pip install.
- name: Mark workspace as safe for git (container)
if: matrix.container != ''
shell: bash
run: git config --global --add safe.directory "$GITHUB_WORKSPACE"

# manylinux images ship multiple Pythons under /opt/python; expose one.
- name: Configure Python (manylinux container)
if: matrix.container != ''
Expand Down
Loading