From a3cadb4447baa83bdcb1821e43ee0ca6de5bda8f Mon Sep 17 00:00:00 2001 From: Lesueur Benjamin Date: Thu, 21 Sep 2023 09:56:38 +0200 Subject: [PATCH] Setup dotnet 8 SDK --- .github/workflows/publish-hc.yml | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/.github/workflows/publish-hc.yml b/.github/workflows/publish-hc.yml index 2d7d5d380..9ae122118 100644 --- a/.github/workflows/publish-hc.yml +++ b/.github/workflows/publish-hc.yml @@ -68,9 +68,14 @@ jobs: - name: Install Innosetup run: | choco install innosetup --version=${{ env.INNO_VERSION }} --force + + - name: Setup dotnet 8 SDK + uses: actions/setup-dotnet@v3 + with: + dotnet-version: '8.x' - - name: Nuget Restore - run: nuget restore ${{ env.SOLUTION_NAME }}.sln + - name: Restore Solution + run: dotnet restore ${{ env.SOLUTION_NAME }}.sln - name: Build Solution run: dotnet build ${{ env.SOLUTION_NAME }}.sln /p:Configuration=Release @@ -98,4 +103,4 @@ jobs: draft: true fail_on_unmatched_files: true files: | - ./install/HandheldCompanion-${{ inputs.releaseVersion }}.exe + ./install/HandheldCompanion-${{ inputs.releaseVersion }}.exe \ No newline at end of file