diff --git a/.github/workflows/ci-cd.yml b/.github/workflows/ci-cd.yml index 4cf56cc..1ea4052 100644 --- a/.github/workflows/ci-cd.yml +++ b/.github/workflows/ci-cd.yml @@ -38,14 +38,7 @@ jobs: # Restore the application to populate the obj folder with RuntimeIdentifiers - name: Restore the application - # run: dotnet restore $env:Solution_Name --locked-mode - uses: actions/cache@v4 - with: - path: ~/.nuget/packages - # Look to see if there is a cache hit for the corresponding requirements file - key: ${{ runner.os }}-nuget-${{ hashFiles('**/project.assets.json') }} - restore-keys: | - ${{ runner.os }}-nuget + run: dotnet restore $env:Solution_Name --locked-mode # Build the application - name: Build the application