From 2614f6b710756ae47416d388b39d027699d3320c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tob=C3=ADas=20Lifschitz?= Date: Wed, 6 Nov 2024 01:16:38 -0300 Subject: [PATCH] Python artifacts failed to upload to release because of wrong path (#359) --- .github/workflows/ci_python_publish.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci_python_publish.yml b/.github/workflows/ci_python_publish.yml index e9994d81..043f0e2a 100644 --- a/.github/workflows/ci_python_publish.yml +++ b/.github/workflows/ci_python_publish.yml @@ -36,7 +36,7 @@ jobs: env: TAG: ${{ inputs.tag }} with: - file: dist/*.tar.gz + file: sdist/*.tar.gz tag: ${{ env.TAG }} overwrite: true file_glob: true @@ -68,7 +68,7 @@ jobs: env: TAG: ${{ inputs.tag }} with: - file: wheelhouse/*.whl + file: wheels/*.whl tag: ${{ env.TAG }} overwrite: true file_glob: true