From 54674542569dbffc3b5ca030c3b5e4e3ac8076da Mon Sep 17 00:00:00 2001 From: romainsacchi Date: Wed, 18 Dec 2024 08:23:08 +0100 Subject: [PATCH] Fix conda_build_config.yaml --- .github/workflows/main.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 037be4e8..94847d0e 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -160,7 +160,7 @@ jobs: conda build conda/ --old-build-string # List built .tar.bz2 and .conda packages - BUILT_PACKAGES=$(find $CONDA_BLD_PATH/noarch/ -type f \( -name "*.tar.bz2" -o -name "*.conda" \)) + BUILT_PACKAGES=$(find $CONDA_BLD_PATH -type f \( -name "*.tar.bz2" -o -name "*.conda" \)) echo "Built packages:" echo $BUILT_PACKAGES @@ -171,6 +171,7 @@ jobs: anaconda -t ${{ secrets.ANACONDA_CLOUD }} upload -u $USER $PACKAGE --force done + testconda: name: (${{ matrix.python-version }}, ${{ matrix.os }})