Skip to content

Commit

Permalink
Update build.yml - Use .net 9
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelsakharov authored Nov 25, 2024
1 parent cbe97e9 commit a3e335a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.x
dotnet-version: 9.x

# For caching purposes, restore dependencies in a dedicated step
- name: Restore dependencies
Expand Down Expand Up @@ -54,11 +54,11 @@ jobs:
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.x
dotnet-version: 9.x

# Publish
- name: Publish
run: dotnet publish ./Prowl.Editor/Prowl.Editor.csproj --configuration Release --output ./publish/${{ matrix.runtime }}/Prowl --runtime ${{ matrix.runtime }} --framework net8.0
run: dotnet publish ./Prowl.Editor/Prowl.Editor.csproj --configuration Release --output ./publish/${{ matrix.runtime }}/Prowl --runtime ${{ matrix.runtime }} --framework net9.0

# Save the resulting folder as artifacts
- name: Upload artifact
Expand Down

0 comments on commit a3e335a

Please sign in to comment.