diff --git a/.github/workflows/conda-package.yml b/.github/workflows/conda-package.yml index 6f96bfa..f4a7206 100644 --- a/.github/workflows/conda-package.yml +++ b/.github/workflows/conda-package.yml @@ -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