Skip to content

Commit

Permalink
fix action dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Zeitsperre committed May 5, 2023
1 parent 310f240 commit 834c0cd
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/publish-pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,12 @@ jobs:
uses: actions/setup-python@v4
with:
python-version: "3.x"
- name: Install packaging libraries
run: |
python -m pip install wheel
- name: Build a binary wheel and a source tarball
run: python setup.py sdist bdist_wheel
run: |
python setup.py sdist bdist_wheel
- name: Publish distribution 📦 to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/tag-testpypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,12 @@ jobs:
uses: actions/setup-python@v4
with:
python-version: "3.x"
- name: Install packaging libraries
run: |
python -m pip install wheel
- name: Build a binary wheel and a source tarball
run: python setup.py sdist bdist_wheel
run: |
python setup.py sdist bdist_wheel
- name: Publish distribution 📦 to Test PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
Expand Down

0 comments on commit 834c0cd

Please sign in to comment.