From 66b0e6bf0ce9e4fa6acd6420f2cfc3a22bab229d Mon Sep 17 00:00:00 2001 From: Adam Date: Mon, 28 Oct 2024 15:53:36 -0600 Subject: [PATCH] fixed build issues --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 6e40787..1e0680d 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -25,9 +25,9 @@ jobs: - name: Restore Google.Authenticator.Tests run: dotnet restore ./Google.Authenticator.Tests/Google.Authenticator.Tests.csproj - name: Build Package - run: dotnet build ./Google.Authenticator/Google.Authenticator.csproj --configuration $(buildConfiguration) --no-restore + run: dotnet build ./Google.Authenticator/Google.Authenticator.csproj --configuration Release --no-restore - name: Build Tests - run: dotnet build ./Google.Authenticator.Tests/Google.Authenticator.Tests.csproj --configuration $(buildConfiguration) --no-restore --no-dependencies + run: dotnet build ./Google.Authenticator.Tests/Google.Authenticator.Tests.csproj --configuration Release --no-restore --no-dependencies - name: Test run: dotnet test ./Google.Authenticator.Tests/Google.Authenticator.Tests.csproj --no-build --verbosity normal --configuration Release - name: Pack