Skip to content

Commit

Permalink
Fix github action to package Python
Browse files Browse the repository at this point in the history
  • Loading branch information
dfeneyrou committed Sep 18, 2024
1 parent aa3abb6 commit a53a58e
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,9 +93,9 @@ jobs:
- name: Create wheel packages for python 3.7
run: |
cd python
python -m --wheel
python -m build --wheel
cd ..\server\scripting
python -m --wheel
python -m build --wheel
- uses: actions/setup-python@v5
with:
Expand All @@ -106,9 +106,9 @@ jobs:
- name: Create a wheel package instrumentation module for python 3.8
run: |
cd python
python -m --wheel
python -m build --wheel
cd ..\server\scripting
python -m --wheel
python -m build --wheel
- uses: actions/setup-python@v5
with:
Expand All @@ -119,9 +119,9 @@ jobs:
- name: Create a wheel package instrumentation module for python 3.9
run: |
cd python
python -m --wheel
python -m build --wheel
cd ..\server\scripting
python -m --wheel
python -m build --wheel
- uses: actions/setup-python@v5
with:
Expand All @@ -132,9 +132,9 @@ jobs:
- name: Create a wheel package instrumentation module for python 3.10
run: |
cd python
python -m --wheel
python -m build --wheel
cd ..\server\scripting
python -m --wheel
python -m build --wheel
- uses: actions/setup-python@v5
with:
Expand All @@ -145,9 +145,9 @@ jobs:
- name: Create a source and wheel package instrumentation module for python 3.11
run: |
cd python
python -m --wheel --sdist
python -m build --wheel --sdist
cd ..\server\scripting
python -m --wheel --sdist
python -m build --wheel --sdist
- uses: actions/upload-artifact@v4
Expand Down

0 comments on commit a53a58e

Please sign in to comment.