diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 6835f5e..b48e99a 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -12,8 +12,11 @@ jobs: steps: - uses: actions/checkout@v3 - uses: actions/setup-dotnet@v3 + id: dotnet with: dotnet-version: 6.0.x + - name: force dotnet version + run: echo '{"sdk":{"version": "${{ steps.dotnet.outputs.dotnet-version }}"}}' > ./global.json - name: print run: dotnet --list-sdks && dotnet --info - name: Install dependencies