From 824f5330744d6321b32e59e36a09af0d2bbb5a05 Mon Sep 17 00:00:00 2001 From: Aidan Heerdegen Date: Fri, 16 Aug 2024 12:39:36 +1000 Subject: [PATCH] Change artifact back to fixed glob path --- .github/workflows/CI.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index a4cacb8..a1c83f1 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -39,15 +39,14 @@ jobs: - name: Run conda build shell: bash -el {0} - id: build run: | - echo "path=$(conda build . --no-anaconda-upload --output-folder=./build --output)" >> $GITHUB_OUTPUT + conda build . --no-anaconda-upload --output-folder=./build - uses: actions/upload-artifact@v4 with: name: ${{ env.NAME }} if-no-files-found: error - path: ${{ steps.build.outputs.path }} + path: ./build/noarch/um2nc-*.tar.bz2 tests: name: Tests