We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9af8c15 commit a1a828cCopy full SHA for a1a828c
.github/workflows/pypi.yml
@@ -11,6 +11,8 @@ on:
11
12
# Cancels all previous workflow runs for pull requests that have not completed.
13
concurrency:
14
+ # The concurrency group contains the workflow name and the branch name for pull requests
15
+ # or the commit hash for any other events.
16
group: ${{ github.workflow }}-${{ github.event_name == 'pull_request' && github.head_ref || github.sha }}
17
cancel-in-progress: true
18
@@ -70,7 +72,7 @@ jobs:
70
72
71
73
- name: Build universal wheel
74
run: |
- PYODIDE=1 python setup.py bdist_wheel --universal
75
+ PYODIDE=1 venv-sdist/bin/python setup.py bdist_wheel --universal
76
77
- uses: actions/upload-artifact@v3
78
with:
0 commit comments