From f3eab3e30fe1893236f5fc815167c47c2e449f61 Mon Sep 17 00:00:00 2001 From: ikpil Date: Sun, 21 Jan 2024 20:22:20 +0900 Subject: [PATCH] fix: workflow dotnet-version matrix --- .github/workflows/dotnet.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index 80f152c..972fa7a 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -39,13 +39,13 @@ jobs: - name: Setup .NET uses: actions/setup-dotnet@v3 with: - dotnet-version: ${{ matrix.dotnet }}.x + dotnet-version: ${{ matrix.dotnet-version }}.x - name: Restore dependencies run: dotnet restore - name: Build - run: dotnet build -c Release --no-restore --framework net${{ matrix.dotnet }}.0 + run: dotnet build -c Release --no-restore --framework net${{ matrix.dotnet-version }}.0 - name: Test - run: dotnet test -c Release --no-build --verbosity normal --framework net${{ matrix.dotnet }}.0 + run: dotnet test -c Release --no-build --verbosity normal --framework net${{ matrix.dotnet-version }}.0