From a6ebb26f65a0a60c72c8b6546ab76a9c8c90774e Mon Sep 17 00:00:00 2001 From: prplecake Date: Sun, 21 May 2023 17:21:03 -0500 Subject: [PATCH] Fix malformed release workflow introduced in #47 --- .github/workflows/dotnet-release.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/dotnet-release.yml b/.github/workflows/dotnet-release.yml index ccdffba..2e6142f 100644 --- a/.github/workflows/dotnet-release.yml +++ b/.github/workflows/dotnet-release.yml @@ -14,10 +14,10 @@ jobs: fetch-depth: 0 - uses: actions/cache@v3 with: - path: ~/.nuget/packages - key: ${{ runner.os }}-nuget-${{ hashFiles('**/packages.lock.json') }} - restore-keys: | - ${{ runner.os }}-nuget- + path: ~/.nuget/packages + key: ${{ runner.os }}-nuget-${{ hashFiles('**/packages.lock.json') }} + restore-keys: | + ${{ runner.os }}-nuget- - name: Setup .NET uses: actions/setup-dotnet@v3 with: