Skip to content

Commit

Permalink
Use CI_CONDA_DIR in publish workflow script
Browse files Browse the repository at this point in the history
  • Loading branch information
maddenp-noaa committed Jan 26, 2024
1 parent 9b4be1f commit 86118dc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/scripts/publish.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 86118dc

Please sign in to comment.