Skip to content

Commit

Permalink
CI/CD: Unify 'build' packaging command
Browse files Browse the repository at this point in the history
We already use the more modern "python -m build" during the deploy
stage; so we bring the 'build' stage in line with that.
  • Loading branch information
jackvreeken authored and SGeeversAtVortech committed Feb 11, 2025
1 parent 8f1c0dd commit d25610b
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/rtc-tools.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,10 @@ jobs:
timeout-minutes: 30
steps:
- uses: actions/[email protected]
- run: pip install setuptools # Required for Python 3.12.
- run: python setup.py sdist bdist_wheel
- run: |
python -m pip install --upgrade pip
pip install build
- run: python -m build
- uses: actions/upload-artifact@v4
if: success()
with:
Expand Down

0 comments on commit d25610b

Please sign in to comment.