Skip to content

Commit

Permalink
update workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
txoof committed Aug 1, 2024
1 parent 7e7d7e8 commit 945d8dd
Showing 1 changed file with 10 additions and 5 deletions.
15 changes: 10 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,20 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: "3.x"
- name: Install pypa/build
run: >-
python -m pip install --upgrade pip
pip install setuptools wheel twine
- name: Build
run: python3 setup.py sdist bdist_wheel
python3 -m
pip install
build
--user
# --upgrade pip
# pip install setuptools wheel twine
- name: Build a binary wheel and source tarball
# run: python3 setup.py sdist bdist_wheel
run: python3 -m build
- name: Store the distribution packages
uses: actions/upload-artifact@v3
with:
Expand Down

0 comments on commit 945d8dd

Please sign in to comment.