From e78f674dc0d3e1af652616b5d922c88166f76e11 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20M=C3=BCller?= Date: Wed, 10 Apr 2024 23:34:29 +0200 Subject: [PATCH] hotfix CI: upload/download actions need v3 to allow multiple uploads to the same named Artifact --- .github/workflows/main.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 7acc475..53f3026 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -71,7 +71,7 @@ jobs: with: output-dir: dist - - uses: actions/upload-artifact@v4 + - uses: actions/upload-artifact@v3 with: path: ./dist/*.whl @@ -112,7 +112,7 @@ jobs: # PEP 517 package builder from pypa python -m build --sdist --outdir dist . - - uses: actions/upload-artifact@v4 + - uses: actions/upload-artifact@v3 # if: matrix.os == 'ubuntu-latest' && matrix.python-version == '3.9' with: path: dist/*.tar.gz @@ -122,7 +122,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/download-artifact@v4 + - uses: actions/download-artifact@v3 with: name: artifact path: dist