From bf4dc0aaa319fe00a579cdb1acabda7f366c22b2 Mon Sep 17 00:00:00 2001 From: Martin Bubel Date: Wed, 20 Dec 2023 23:43:19 +0100 Subject: [PATCH] ci: update artifact download --- .github/workflows/actions.yml | 13 ++----------- 1 file changed, 2 insertions(+), 11 deletions(-) diff --git a/.github/workflows/actions.yml b/.github/workflows/actions.yml index a7e31200..fa4fdb73 100644 --- a/.github/workflows/actions.yml +++ b/.github/workflows/actions.yml @@ -58,15 +58,6 @@ jobs: - name: Checkout uses: actions/checkout@v4 - # Extract matrix parameters from the build job - - name: Set matrix parameters - run: | - os=${{ needs.build.outputs.os }} - python=${{ needs.build.outputs.python }} - echo "Matrix parameters: OS=$os, Python=$python" - echo "::set-env name=OS::$os" - echo "::set-env name=PYTHON::$python" - - name: Setup python uses: actions/setup-python@v4 with: @@ -80,12 +71,12 @@ jobs: - name: Download build artifacts uses: actions/download-artifact@v4 with: - name: build-artifacts-${{ env.OS }}-${{ env.PYTHON }} path: dist + merge-multiple: true - name: Inspect dist files run: | - ls -la dist + ls -R dist - name: Upload to PyPI using twine run: |