From 335fd836ff3abe1acc5f88c2ebdd168128911685 Mon Sep 17 00:00:00 2001 From: Freesia Date: Sun, 7 Apr 2024 17:02:05 +0900 Subject: [PATCH] =?UTF-8?q?=E3=82=AD=E3=83=A3=E3=83=83=E3=82=B7=E3=83=A5?= =?UTF-8?q?=E7=84=A1=E5=8A=B9=E5=8C=96=E3=81=A8=E3=83=A9=E3=83=99=E3=83=AB?= =?UTF-8?q?=E5=A4=89=E3=81=88=E3=81=A6=E3=81=BF=E3=82=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/dotnet-desktop.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/dotnet-desktop.yml b/.github/workflows/dotnet-desktop.yml index 63be259..72dd77c 100644 --- a/.github/workflows/dotnet-desktop.yml +++ b/.github/workflows/dotnet-desktop.yml @@ -106,7 +106,7 @@ jobs: with: name: licenses path: licenses/ - installer: + installer_: # if: ${{ startsWith(github.ref, 'refs/tags/') }} needs: - build @@ -114,12 +114,12 @@ jobs: runs-on: windows-latest steps: - uses: actions/checkout@v4 - - uses: actions/cache@v4 - with: - path: ~/.nuget/packages - key: ${{ runner.os }}-nuget-${{ hashFiles('**/*.csproj') }} #hash of project files - restore-keys: | - ${{ runner.os }}-nuget- + # - uses: actions/cache@v4 + # with: + # path: ~/.nuget/packages + # key: ${{ runner.os }}-nuget-${{ hashFiles('**/*.csproj') }} #hash of project files + # restore-keys: | + # ${{ runner.os }}-nuget- - uses: actions/setup-dotnet@v4 with: dotnet-version: 8.0.x @@ -145,7 +145,7 @@ jobs: release: if: ${{ success() && startsWith(github.ref, 'refs/tags/') }} needs: - - installer + - installer_ - build - license runs-on: ubuntu-latest