From 4d2047c44114f6a5d936dbb9b52dabee169498a7 Mon Sep 17 00:00:00 2001 From: roomrys <38435167+roomrys@users.noreply.github.com> Date: Thu, 12 Sep 2024 07:15:01 -0700 Subject: [PATCH] List items in current directory --- .github/workflows/build_tensorflow.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build_tensorflow.yml b/.github/workflows/build_tensorflow.yml index 5acab31..97b93dd 100644 --- a/.github/workflows/build_tensorflow.yml +++ b/.github/workflows/build_tensorflow.yml @@ -116,6 +116,11 @@ jobs: run-id: ${{ env.RUN_ID }} github-token: ${{ secrets.GITHUB_TOKEN }} + - name: List items in current directory + run: | + ls . + ls -R build + # Checkout the repository - name: Checkout uses: actions/checkout@v4 @@ -138,5 +143,5 @@ jobs: shell: bash -l {0} run: | anaconda login --username sleap-deps --password "$ANACONDA_PASSWORD" - anaconda -v upload build/${{ matrix.os-folder }}/*.tar.bz2 --label dev --user sleap-deps + anaconda -v upload "build/${{ matrix.os-folder }}/*.tar.bz2" --label dev --user sleap-deps anaconda logout