Skip to content

Commit

Permalink
Setup dotnet 8 SDK
Browse files Browse the repository at this point in the history
  • Loading branch information
Valkirie committed Sep 21, 2023
1 parent 20fdae3 commit a3cadb4
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/publish-hc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -98,4 +103,4 @@ jobs:
draft: true
fail_on_unmatched_files: true
files: |
./install/HandheldCompanion-${{ inputs.releaseVersion }}.exe
./install/HandheldCompanion-${{ inputs.releaseVersion }}.exe

0 comments on commit a3cadb4

Please sign in to comment.