Skip to content

Commit

Permalink
Canary-release fix for broken git on Windows (#47)
Browse files Browse the repository at this point in the history
  • Loading branch information
kenodegard authored Aug 26, 2022
1 parent f1e744d commit a09eac2
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion canary-release/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,11 @@ runs:
set -euo pipefail
conda activate
conda update --yes --quiet conda
conda install --yes --quiet conda-build anaconda-client git
conda install --yes --quiet conda-build anaconda-client
# git needs to be installed after conda-build
# see https://github.com/conda/conda/issues/11758
# see https://github.com/conda/actions/pull/47
conda install --yes --quiet git
echo "::endgroup::"
echo "::group::Debugging information"
Expand Down

0 comments on commit a09eac2

Please sign in to comment.