Skip to content

Commit af01fb8

Browse files
Use conda activate
1 parent ee5c115 commit af01fb8

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/conda-package.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,9 @@ jobs:
265265
python-version: ${{ matrix.python }}
266266

267267
- name: Install conda-index
268-
run: conda install -n base conda-index
268+
run: |
269+
conda activate
270+
conda install -n base conda-index
269271
270272
- name: Create conda channel with the artifact bit
271273
shell: cmd /C CALL {0}
@@ -277,7 +279,9 @@ jobs:
277279
278280
- name: Index the channel
279281
shell: cmd /C CALL {0}
280-
run: conda index ${{ env.workdir }}\channel
282+
run: |
283+
conda activate
284+
conda index ${{ env.workdir }}\channel
281285
282286
- name: Dump dpctl version info from created channel into ver.json
283287
shell: cmd /C CALL {0}

0 commit comments

Comments
 (0)