Skip to content

Commit

Permalink
Add a step to output content of workdir
Browse files Browse the repository at this point in the history
  • Loading branch information
oleksandr-pavlyk committed Sep 23, 2024
1 parent a2d6182 commit 5270b7c
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/conda-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -222,11 +222,19 @@ jobs:
conda activate
conda index ${{ env.workdir }}\channel
- name: Dump mkl_umath version info from created channel to STDOUT
shell: cmd /C CALL {0}
run: |
conda activate
conda search ${{ env.PACKAGE_NAME }} -c ${{ env.workdir }}/channel --override-channels --info --json
- name: Dump mkl_umath version info from created channel into ver.json
shell: cmd /C CALL {0}
run: |
conda activate
conda search ${{ env.PACKAGE_NAME }} -c ${{ env.workdir }}/channel --override-channels --info --json > ${{ env.workdir }}\ver.json
- name: Output content of workdir
shell: pwsh
run: Get-ChildItem -Path ${{ env.workdir }}
- name: Output content of produced ver.json
shell: pwsh
run: Get-Content -Path ${{ env.workdir }}\ver.json
Expand Down

0 comments on commit 5270b7c

Please sign in to comment.