From f4d4ea46c8e5dddc416399ad30bfb3ccbd6f10c5 Mon Sep 17 00:00:00 2001 From: "James R. Barlow" Date: Wed, 20 Dec 2023 12:44:43 -0800 Subject: [PATCH] Update artifact actions --- .github/workflows/build.yml | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index f2791387e..f32355208 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -225,8 +225,9 @@ jobs: python -m pip install --upgrade pip wheel build python -m build --sdist --wheel - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v4 with: + name: artifact path: | ./dist/*.whl ./dist/*.tar.gz @@ -240,9 +241,8 @@ jobs: id-token: write # mandatory for PyPI publishing if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags/v') steps: - - uses: actions/download-artifact@v3 + - uses: actions/download-artifact@v4 with: - name: artifact path: dist - name: Publish to PyPI @@ -257,9 +257,8 @@ jobs: # Required to create a release contents: write steps: - - uses: actions/download-artifact@v3 + - uses: actions/download-artifact@v4 with: - name: artifact path: dist - name: Create Release