From d07325a4ef0f55b2bcd30b454e90cbea4a449a8d Mon Sep 17 00:00:00 2001 From: JoeZiminski Date: Wed, 26 Jun 2024 16:33:50 +0100 Subject: [PATCH] Try downloading artifact 2. --- .github/workflows/test_kilosort4.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test_kilosort4.yml b/.github/workflows/test_kilosort4.yml index 9115c47cc2..20011bb2c7 100644 --- a/.github/workflows/test_kilosort4.yml +++ b/.github/workflows/test_kilosort4.yml @@ -45,21 +45,23 @@ jobs: outputs: matrix: ${{ steps.set-matrix.outputs.matrix }} steps: + - name: Checkout to repository + uses: actions/checkout@v2 + - name: Download versions file uses: actions/download-artifact@v2 with: name: versions # Name of the artifact to download path: ${{ github.workspace }} # Directory to download the artifact to - - name: Checkout to repository - uses: actions/checkout@v2 - name: Set matrix data id: set-matrix run: | pwd ls .github/scripts ls - echo "matrix=$(jq -c . < .github/scripts/kilosort4-latest-version.json)" >> $GITHUB_OUTPUT + ls ${{ github.workspace }} + echo "matrix=$(jq -c . < kilosort4-latest-version.json)" >> $GITHUB_OUTPUT test: needs: configure name: ${{ matrix.os }} Python ${{ matrix.python-version }}