From b07b69314df0a7c972fd0b25838cc9d27733ba17 Mon Sep 17 00:00:00 2001 From: Eric Larson Date: Fri, 14 Oct 2022 15:30:44 -0400 Subject: [PATCH] FIX: Artifact --- .github/workflows/release.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index b9f6fc99d0..a0ef7205bf 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -34,6 +34,11 @@ jobs: - name: Check env vars run: | echo "Triggered by: ${{ github.event_name }}" + - uses: actions/upload-artifact@v3 + with: + name: dist + path: | + dist # PyPI on release pypi: @@ -41,6 +46,9 @@ jobs: runs-on: ubuntu-latest if: github.event_name == 'release' steps: + - uses: actions/download-artifact@v3 + with: + name: dist - name: Publish to PyPI uses: pypa/gh-action-pypi-publish@release/v1 with: @@ -53,6 +61,9 @@ jobs: runs-on: ubuntu-latest if: github.event_name == 'push' steps: + - uses: actions/download-artifact@v3 + with: + name: dist - name: Publish to TestPyPI uses: pypa/gh-action-pypi-publish@release/v1 with: