From 03df396724249ebe3bc8e762efc7dd5a8aa0a380 Mon Sep 17 00:00:00 2001 From: Oleksandr Pavlyk Date: Mon, 23 Sep 2024 16:46:05 -0500 Subject: [PATCH] Add a step to output content of workdir --- .github/workflows/conda-package.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/conda-package.yml b/.github/workflows/conda-package.yml index 6f96bfa..589779f 100644 --- a/.github/workflows/conda-package.yml +++ b/.github/workflows/conda-package.yml @@ -227,6 +227,9 @@ jobs: 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