Skip to content

Commit 5270b7c

Browse files
Add a step to output content of workdir
1 parent a2d6182 commit 5270b7c

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

.github/workflows/conda-package.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -222,11 +222,19 @@ jobs:
222222
conda activate
223223
conda index ${{ env.workdir }}\channel
224224
225+
- name: Dump mkl_umath version info from created channel to STDOUT
226+
shell: cmd /C CALL {0}
227+
run: |
228+
conda activate
229+
conda search ${{ env.PACKAGE_NAME }} -c ${{ env.workdir }}/channel --override-channels --info --json
225230
- name: Dump mkl_umath version info from created channel into ver.json
226231
shell: cmd /C CALL {0}
227232
run: |
228233
conda activate
229234
conda search ${{ env.PACKAGE_NAME }} -c ${{ env.workdir }}/channel --override-channels --info --json > ${{ env.workdir }}\ver.json
235+
- name: Output content of workdir
236+
shell: pwsh
237+
run: Get-ChildItem -Path ${{ env.workdir }}
230238
- name: Output content of produced ver.json
231239
shell: pwsh
232240
run: Get-Content -Path ${{ env.workdir }}\ver.json

0 commit comments

Comments
 (0)