From 18d9b60a9a4c978460a9c8e7d24b9980fdf85211 Mon Sep 17 00:00:00 2001 From: David J Pugh <6003255+djpugh@users.noreply.github.com> Date: Mon, 1 May 2023 22:21:28 +0100 Subject: [PATCH] Fixing artifacts download --- .github/workflows/pipeline.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/pipeline.yml b/.github/workflows/pipeline.yml index da993f7..60dc92b 100644 --- a/.github/workflows/pipeline.yml +++ b/.github/workflows/pipeline.yml @@ -204,9 +204,10 @@ jobs: - name: Download collated wheels uses: actions/download-artifact@v3 with: - path: wheels - - shell: bash - run: cp -u wheels/*.whl src/azure_devops_artifacts_helpers/wheels/ + name: wheels + path: src/azure_devops_artifacts_helpers/wheels/ + # - shell: bash + # run: cp -u wheels/*.whl src/azure_devops_artifacts_helpers/wheels/ - name: Setup Test Suite run: tox -e test-${{ matrix.tox_version }} -vv --notest - name: Run Test Suite