From 4ca3f272933af3ba9c4fdc09681e1a9644599f9c Mon Sep 17 00:00:00 2001 From: Grant Limberg Date: Tue, 2 May 2023 08:53:29 -0700 Subject: [PATCH] Don't force rebuild on Windows build GH Action (#1985) Switching `/t:ZeroTierOne:Rebuild` to just `/t:ZeroTierOne` allows the Windows build to use the rust cache. `/t:ZeroTierOne:Rebuild` cleared the cache before building. --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 657c8d8c7..b6d09a6a3 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -95,4 +95,4 @@ jobs: uses: microsoft/setup-msbuild@v1.1.3 - name: msbuild run: | - msbuild windows\ZeroTierOne.sln /m /p:Configuration=Release /property:Platform=x64 /t:ZeroTierOne:Rebuild + msbuild windows\ZeroTierOne.sln /m /p:Configuration=Release /property:Platform=x64 /t:ZeroTierOne