Browse Source

name artifacts

pull/4/head
Brett Langdon 5 years ago
parent
commit
267e9f3c00
Signed by: brettlangdon GPG Key ID: A70042D88B95AA2B
2 changed files with 4 additions and 1 deletions
  1. +3
    -1
      .github/workflows/build.yml
  2. +1
    -0
      .github/workflows/test.yml

+ 3
- 1
.github/workflows/build.yml View File

@ -25,6 +25,7 @@ jobs:
run: python -m cibuildwheel --output-dir wheelhouse
- uses: actions/upload-artifact@v2
with:
name: wheelhouse
path: ./wheelhouse/*.whl
build_sdist:
@ -41,6 +42,7 @@ jobs:
- run: poetry build --format sdist
- uses: actions/upload-artifact@v2
with:
name: wheelhouse
path: ./dist/*.tar.gz
upload_pypi:
@ -50,7 +52,7 @@ jobs:
steps:
- uses: actions/download-artifact@v2
with:
name: artifact
name: wheelhouse
path: dist
- uses: pypa/gh-action-pypi-publish@master


+ 1
- 0
.github/workflows/test.yml View File

@ -55,4 +55,5 @@ jobs:
- run: poetry run sphinx-build -a -W -n -E docs/ docs/_build
- uses: actions/upload-artifact@v2
with:
name: docs
path: ./docs/_build/

Loading…
Cancel
Save