Skip to content

Commit

Permalink
Update CI script
Browse files Browse the repository at this point in the history
  • Loading branch information
ltrzesniewski committed Dec 20, 2024
1 parent 46ddd22 commit b142ef1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Build
on: [push, pull_request]

env:
BUILD_DOTNET_VERSION: 6.0.x
BUILD_DOTNET_VERSION: 9.0.x
BUILD_LINUX_TEST_TFM: net6.0
DOTNET_NOLOGO: 1

Expand All @@ -16,7 +16,7 @@ jobs:
uses: actions/checkout@v4

- name: Setup .NET
uses: actions/setup-dotnet@v3
uses: actions/setup-dotnet@v4
with:
dotnet-version: ${{ env.BUILD_DOTNET_VERSION }}

Expand All @@ -33,7 +33,7 @@ jobs:
run: dotnet test --configuration Release --no-build src/Abc.Zebus.sln

- name: Upload NuGet
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: NuGet
path: output/*.nupkg
Expand All @@ -46,7 +46,7 @@ jobs:
uses: actions/checkout@v4

- name: Setup .NET
uses: actions/setup-dotnet@v3
uses: actions/setup-dotnet@v4
with:
dotnet-version: ${{ env.BUILD_DOTNET_VERSION }}

Expand Down

0 comments on commit b142ef1

Please sign in to comment.