Upload artifact to GitHub

This commit is contained in:
Aaron Heise 2023-02-11 23:21:02 -06:00 committed by GitHub
parent 550005cb31
commit 5292402236
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -6,7 +6,7 @@
# separate terms of service, privacy policy, and support
# documentation.
name: Upload to PyPI
name: Publish
on:
release:
@ -51,6 +51,17 @@ jobs:
- name: Test with pytest
run: poetry run pytest -m "not skip_ci" tests
- name: Upload a Build Artifact
uses: actions/upload-artifact@v3.1.2
with:
# Artifact name
name: "pip package"
# A file, directory or wildcard pattern that describes what to upload
path: "dist/*"
# The desired behavior if no files are found using the provided path.
if-no-files-found: error
- name: Publish to PyPI