Add pwd and ls to determine why restore is failing

This commit is contained in:
2024-03-23 18:25:08 -04:00
committed by GitHub
parent b23f42e0c4
commit f7cd9a3580

View File

@@ -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 }})