Skip to content

Commit

Permalink
Update deploy-pypi.yml
Browse files Browse the repository at this point in the history
Signed-off-by: Loren Eteval <[email protected]>
  • Loading branch information
LorenEteval committed Feb 28, 2024
1 parent 2706752 commit 570ff89
Showing 1 changed file with 16 additions and 4 deletions.
20 changes: 16 additions & 4 deletions .github/workflows/deploy-pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,26 @@ jobs:
uses: actions/setup-python@v4
with:
python-version: "3.x"
- name: Install pypa/build
- name: Set up Python venv
run: |
python3 -m venv .venv
source .venv/bin/activate
python3 --version
- name: Install libegl1
run: |
sudo apt install -y libegl1
- name: Install setuptools, wheel
run: >-
python3 -m
pip install
build
--user
setuptools wheel
- name: Install requirements-nocore.txt
run: >-
python3 -m
pip install
-r requirements-nocore.txt
- name: Build a binary wheel and a source tarball
run: python3 -m build
run: python3 setup.py sdist bdist_wheel
- name: Store the distribution packages
uses: actions/upload-artifact@v3
with:
Expand Down

0 comments on commit 570ff89

Please sign in to comment.