Skip to content

Commit

Permalink
chore(refactor): Search for .conda packages to upload too (#108)
Browse files Browse the repository at this point in the history
  • Loading branch information
jakirkham authored Aug 30, 2024
1 parent a08bc55 commit e722fec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ci/publish/conda.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ set -euo pipefail
. /usr/share/miniconda/etc/profile.d/conda.sh
conda activate base
conda install -y anaconda-client
pkgs_to_upload=$(find "${CONDA_OUTPUT_DIR}" -name "*.tar.bz2")
pkgs_to_upload=$(find "${CONDA_OUTPUT_DIR}" -name "*.conda" -o -name "*.tar.bz2")

export CONDA_ORG="${1}"

Expand Down

0 comments on commit e722fec

Please sign in to comment.