Update release.yml

- remove the name the artifact is saved with, which then defaults it to "artifact"
- add the 'name' tag in the download attempt, using "artifact"
This commit is contained in:
srcarter3 2022-01-05 15:35:35 -08:00 committed by GitHub
parent c75164c80c
commit c98c96509e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -28,7 +28,6 @@ jobs:
- name: Save built packages as artifact
uses: actions/upload-artifact@v2
with:
name: ${{ runner.os }}-${{ steps.setup.outputs.python-version }}
path: dist/
retention-days: 5
@ -44,6 +43,7 @@ jobs:
uses: actions/download-artifact@v2
with:
path: ./dist
name: artifact
- name: Publish Package
uses: pypa/gh-action-pypi-publish@v1.4.2