From 86118dc13588e5ffa4b436fb35716715f5b11c0d Mon Sep 17 00:00:00 2001 From: Paul Madden Date: Fri, 26 Jan 2024 17:18:41 +0000 Subject: [PATCH] Use CI_CONDA_DIR in publish workflow script --- .github/scripts/publish.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/scripts/publish.sh b/.github/scripts/publish.sh index ae7d66d2b..044846a5e 100755 --- a/.github/scripts/publish.sh +++ b/.github/scripts/publish.sh @@ -5,6 +5,6 @@ ci_conda_activate set -ux f=recipe/meta.json glob="$(jq -r .name $f)-$(jq -r .version $f)-*_$(jq -r .buildnum $f).tar.bz2" -for x in $(find conda/conda-bld -type f -name "$glob"); do +for x in $(find $CI_CONDA_DIR/conda-bld -type f -name "$glob"); do anaconda -t $ANACONDA_TOKEN upload $x done