diff --git a/.github/actions/build_conda/action.yml b/.github/actions/build_conda/action.yml index bf84a38496..683fb7a5ba 100644 --- a/.github/actions/build_conda/action.yml +++ b/.github/actions/build_conda/action.yml @@ -34,8 +34,12 @@ runs: - name: Install conda build tools shell: ${{ steps.choose_shell.outputs.shell }} run: | - conda install -y -q "conda!=24.11.0" - conda install -y -q "conda-build!=24.11.0" + conda install -y "conda!=24.11.0" + conda install -y "conda-build!=24.11.0" + - name: Fix CI failure + shell: ${{ steps.choose_shell.outputs.shell }} + if: runner.os != 'Windows' + run: conda remove conda-anaconda-telemetry - name: Enable anaconda uploads if: inputs.label != '' shell: ${{ steps.choose_shell.outputs.shell }}