Skip to content

Commit cb841cc

Browse files
committed
show conda info on Windows
1 parent 2a08c7b commit cb841cc

1 file changed

Lines changed: 13 additions & 2 deletions

File tree

.github/workflows/conda-package-cf.yml

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -108,6 +108,14 @@ jobs:
108108
channels: conda-forge
109109
python-version: ${{ matrix.python }}
110110

111+
- name: Update conda
112+
run: |
113+
conda update -n base --all
114+
115+
- name: Install conda build
116+
run: |
117+
conda install -n base -y conda-build
118+
111119
- name: Cache conda packages
112120
uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
113121
env:
@@ -126,9 +134,12 @@ jobs:
126134
echo "CONDA_BLD=$CONDA\\conda-bld\\win-64\\" >> "$GITHUB_ENV"
127135
echo "WHEELS_OUTPUT_FOLDER=$GITHUB_WORKSPACE\\" >> "$GITHUB_ENV"
128136
129-
- name: Install conda build
137+
- name: Show Conda info
138+
run: |
139+
conda info --all
140+
141+
- name: List base environment packages
130142
run: |
131-
conda install -n base -y conda-build
132143
conda list -n base
133144
134145
- name: Build conda package

0 commit comments

Comments
 (0)