From c0b1e394f99921e379884dac8b6f56f0ca7f3f59 Mon Sep 17 00:00:00 2001 From: David Gidwani Date: Sun, 10 Mar 2024 20:49:59 -0400 Subject: [PATCH] ci: :ferris_wheel: restructure downloaded artifacts in publish workflow --- .github/workflows/publish.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 7c0cb16..5736af5 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -31,6 +31,14 @@ jobs: - name: Download artifacts uses: actions/download-artifact@v4 + with: + path: dist + merge-multiple: true + + - name: Setup directory structure for publishing + run: | + mv -v **/*.whl dist/ + ls -R dist/ - name: Publish to GitHub Releases uses: python-semantic-release/upload-to-gh-release@main