From 3b1f6718f6a9999eb5da22fbdc88f4cdb5d1d198 Mon Sep 17 00:00:00 2001 From: adafcaefc <33832514+adafcaefc@users.noreply.github.com> Date: Fri, 6 Dec 2024 20:56:18 +0700 Subject: [PATCH] Update nightly.yml --- .github/workflows/nightly.yml | 27 --------------------------- 1 file changed, 27 deletions(-) diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index a52baf2c..ef923d0a 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -15,33 +15,6 @@ jobs: - name: Checkout Repository uses: actions/checkout@v3 - # Cache NuGet packages - - name: Cache NuGet - uses: actions/cache@v3 - with: - path: ~/.nuget/packages - key: ${{ runner.os }}-nuget-${{ hashFiles('**/*.sln', '**/*.csproj', '**/*.vcxproj') }} - restore-keys: | - ${{ runner.os }}-nuget- - - # Cache MSBuild binaries - - name: Cache Build Tools - uses: actions/cache@v3 - with: - path: C:\Users\runneradmin\AppData\Local\Microsoft\MSBuild - key: msbuild-cache-${{ runner.os }}-${{ hashFiles('**/*.sln', '**/*.vcxproj') }} - restore-keys: | - msbuild-cache-${{ runner.os }}- - - # Cache the bin directory - - name: Cache Build Artifacts - uses: actions/cache@v3 - with: - path: bin - key: bin-cache-${{ runner.os }}-${{ hashFiles('**/*.sln') }} - restore-keys: | - bin-cache-${{ runner.os }}- - # Set up MSBuild - name: Set up MSBuild uses: microsoft/setup-msbuild@v1