From 9530f064c7e2b4e1f9f97865d3cf8ae4d0aceeb1 Mon Sep 17 00:00:00 2001 From: Dominion Date: Tue, 11 Apr 2023 10:56:38 -0400 Subject: [PATCH] Add missing dotnet setup to deploy step --- .github/workflows/ci-suite.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/ci-suite.yml b/.github/workflows/ci-suite.yml index 9175dc01d8..1d7fbc8837 100644 --- a/.github/workflows/ci-suite.yml +++ b/.github/workflows/ci-suite.yml @@ -680,6 +680,11 @@ jobs: runs-on: windows-latest if: github.event_name == 'push' && github.event.ref == 'refs/heads/master' && contains(github.event.head_commit.message, '[TGSDeploy]') steps: + - name: Setup dotnet + uses: actions/setup-dotnet@v2 + with: + dotnet-version: ${{ env.TGS_DOTNET_VERSION }} + - name: Checkout uses: actions/checkout@v3