From 267e9f3c0083ee9ef997da0f196729151d7a2ad4 Mon Sep 17 00:00:00 2001 From: brettlangdon Date: Mon, 15 Feb 2021 12:51:32 -0500 Subject: [PATCH] name artifacts --- .github/workflows/build.yml | 4 +++- .github/workflows/test.yml | 1 + 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 55aa68a..2674329 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -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 diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index d16adf9..82364a7 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -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/