From 01925c7bf64c67ee3050943bf4624b836c88f3f0 Mon Sep 17 00:00:00 2001 From: Michael O'Keefe Date: Fri, 15 Dec 2023 11:56:43 -0700 Subject: [PATCH] Fix issue with listing irrelevant and non-existing directory --- .github/workflows/build-cli.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-cli.yaml b/.github/workflows/build-cli.yaml index e1b99e01..635d6fe0 100644 --- a/.github/workflows/build-cli.yaml +++ b/.github/workflows/build-cli.yaml @@ -56,8 +56,8 @@ jobs: - run: cd rust/ && cargo test - - name: list dist files - run: ${{ matrix.ls || 'ls -lh' }} dist/ + - name: list current directory files + run: ${{ matrix.ls || 'ls -lh' }} . - uses: actions/upload-artifact@v3 with: