From ac3a1923482a2158c79f0c5b0a5667fe7b3d3e1f Mon Sep 17 00:00:00 2001 From: Antoine Lambert Date: Wed, 25 Mar 2026 19:58:59 +0100 Subject: [PATCH] ci: Fix publish workflow Due to a misnamed parameter, wheels downloaded from gha artifacts were extracted in sub-directories inside the dist folder making the pypa/gh-action-pypi-publish action fail afterwards. --- .github/workflows/publish.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 35e62d9c..03037a4e 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -51,7 +51,7 @@ jobs: with: workflow: manylinux-wheels.yml commit: ${{ github.event.workflow_run.head_sha }} - pattern: subvertpy-wheel-manylinux-* + name: subvertpy-wheel-manylinux-* path: dist/ merge_multiple: true allow_forks: false @@ -60,7 +60,7 @@ jobs: with: workflow: macos-wheels.yml commit: ${{ github.event.workflow_run.head_sha }} - pattern: subvertpy-wheel-macos-* + name: subvertpy-wheel-macos-* path: dist/ merge_multiple: true allow_forks: false @@ -69,7 +69,7 @@ jobs: with: workflow: windows-wheels.yml commit: ${{ github.event.workflow_run.head_sha }} - pattern: subvertpy-wheel-windows-* + name: subvertpy-wheel-windows-* path: dist/ merge_multiple: true allow_forks: false