Skip to content

Commit

Permalink
gh-actions: deploy: remove unnecessary download-artifact step
Browse files Browse the repository at this point in the history
  • Loading branch information
miri64 committed Feb 10, 2023
1 parent 4bcfa34 commit 6a15ec0
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -127,10 +127,6 @@ jobs:
with:
ref: ${{ github.event.ref }}
submodules: true
- uses: actions/download-artifact@main
with:
name: dist
path: .tox/dist/
- name: Set up Python
uses: actions/setup-python@main
with:
Expand All @@ -140,7 +136,9 @@ jobs:
python -m pip install --upgrade pip
python -m pip install --upgrade build
- name: Generate distribution archives
run: python -m build
run: |
python -m build
rm dist/*.whl
- name: Publish package to PyPI
uses: pypa/gh-action-pypi-publish@master
with:
Expand Down

0 comments on commit 6a15ec0

Please sign in to comment.