From 3859fef259f4317cec6b91769269922976812ae2 Mon Sep 17 00:00:00 2001 From: Christoph Schueler Date: Fri, 4 Oct 2024 08:34:11 +0300 Subject: [PATCH] try to fix upload-artifact #6 --- .github/workflows/pythonapp.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pythonapp.yml b/.github/workflows/pythonapp.yml index c98bca5..22e92ac 100644 --- a/.github/workflows/pythonapp.yml +++ b/.github/workflows/pythonapp.yml @@ -39,7 +39,7 @@ jobs: # include-hidden-files: true # retention-days: 1 name: cibw-wheels-${{ matrix.os }}-${{ strategy.job-index }} - path: ./dist/*.whl + path: ./wheelhouse/*.whl build_sdist: name: Build source distribution @@ -59,7 +59,7 @@ jobs: retention-days: 1 upload_pypi: - needs: [build_wheels] # , build_sdist + needs: [build_wheels, build_sdist] # , build_sdist runs-on: ubuntu-latest # if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags/') # alternatively, to publish when a GitHub Release is created, use the following rule: