From f7cd9a358043ae779616dcb8e4b7346345e963d5 Mon Sep 17 00:00:00 2001 From: "Daniel J. Summers" Date: Sat, 23 Mar 2024 18:25:08 -0400 Subject: [PATCH] Add pwd and ls to determine why restore is failing --- .github/workflows/ci.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index daa983e..a87cd0f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -38,6 +38,10 @@ jobs: uses: actions/setup-dotnet@v4.0.0 with: dotnet-version: 8.x + - name: Show current location + run: pwd + - name: Show files at current location + run: ls -l - name: Restore dependencies run: dotnet restore src/MyWebLog.sln - name: Build (${{ matrix.dotnet-version }})