From c55f2c83c2a895b478e7a4027e92580eaa5f17bb Mon Sep 17 00:00:00 2001 From: Christoph Schueler Date: Thu, 3 Oct 2024 17:51:41 +0300 Subject: [PATCH] try to fix upload-artifact #4 --- .github/workflows/pythonapp.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/pythonapp.yml b/.github/workflows/pythonapp.yml index 26fa5e2..c98bca5 100644 --- a/.github/workflows/pythonapp.yml +++ b/.github/workflows/pythonapp.yml @@ -35,11 +35,11 @@ jobs: - uses: actions/upload-artifact@v4 with: - # path: ./wheelhouse/*.whl + # path: ./dist/*.whl # include-hidden-files: true # retention-days: 1 name: cibw-wheels-${{ matrix.os }}-${{ strategy.job-index }} - path: ./wheelhouse/*.whl + path: ./dist/*.whl build_sdist: name: Build source distribution @@ -54,7 +54,7 @@ jobs: - uses: actions/upload-artifact@v4 with: - path: wheelhouse/*.tar.gz + path: dist/*.tar.gz include-hidden-files: true retention-days: 1 @@ -68,9 +68,9 @@ jobs: - uses: actions/download-artifact@v4.1.7 with: # name: artifact - path: wheelhouse + path: dist merge-multiple: true - # pattern: wheelhouse/* + # pattern: dist/* - uses: pypa/gh-action-pypi-publish@v1.4.2 with: