Skip to content

Commit

Permalink
Use build module in the dev release artifacts github workflow.
Browse files Browse the repository at this point in the history
  • Loading branch information
Kami committed Aug 6, 2023
1 parent 70599bf commit 9518885
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/publish_dev_artifact.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,12 +40,16 @@ jobs:
- name: Install Dependencies
run: |
pip install --upgrade pip
pip install wheel
pip install build
- name: Create Dev Artifacts
run: |
python setup.py sdist --formats=bztar,zip,gztar
python setup.py bdist_wheel
python -m build
ls -la dist
# Ensure artifacts have been created
ls -la dist | grep .tar.gz
ls -la dist | grep .whl
- name: Store dev artifacts
uses: actions/upload-artifact@v3
Expand Down

0 comments on commit 9518885

Please sign in to comment.