We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 10016ae commit b8c87d9Copy full SHA for b8c87d9
.github/workflows/publish.yml
@@ -34,12 +34,12 @@ jobs:
34
with:
35
persist-credentials: false
36
37
- - name: Install build dependencies
38
- run: python -m pip install --upgrade pip build
39
- shell: alpine.sh {0} -root
+ - name: Create build env
+ run: python3 -m venv /tmp/build_venv && . /tmp/build_venv/bin/activate && pip install --upgrade build
+ shell: alpine.sh {0}
40
41
- name: Build package
42
- run: python -m build
+ run: . /tmp/build_venv/bin/activate && python -m build
43
shell: alpine.sh {0}
44
45
- name: Store the distribution packages
0 commit comments