We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3ff8a24 commit 0a0af00Copy full SHA for 0a0af00
.github/actions/build_conda/action.yml
@@ -34,8 +34,12 @@ runs:
34
- name: Install conda build tools
35
shell: ${{ steps.choose_shell.outputs.shell }}
36
run: |
37
- conda install -y -q "conda!=24.11.0"
38
- conda install -y -q "conda-build!=24.11.0"
+ conda install -y "conda!=24.11.0"
+ conda install -y "conda-build!=24.11.0"
39
+ - name: Fix CI failure
40
+ shell: ${{ steps.choose_shell.outputs.shell }}
41
+ if: runner.os != 'Windows'
42
+ run: conda remove conda-anaconda-telemetry
43
- name: Enable anaconda uploads
44
if: inputs.label != ''
45
0 commit comments