Skip to content

Commit

Permalink
Fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
khellang committed Nov 19, 2024
1 parent c8d3c51 commit d93d5e7
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 @@ -17,16 +17,16 @@ jobs:
uses: actions/checkout@v4

- name: Setup .NET Core SDK
uses: actions/setup-dotnet@v3
uses: actions/setup-dotnet@v4
with:
dotnet-version: "8.0.x"
dotnet-version: "9.0.x"

- name: Test
run: dotnet test --collect:"XPlat Code Coverage"

- name: Update codecov
if: ${{ startsWith(github.repository, 'khellang/') }}
uses: codecov/codecov-action@v3
uses: codecov/codecov-action@v5

- name: Pack NuGet packages (CI versions)
if: ${{ startsWith(github.ref, 'refs/heads/') && github.event_name == 'push' && startsWith(github.repository, 'khellang/') }}
Expand All @@ -38,7 +38,7 @@ jobs:

- name: Upload artifacts
if: ${{ github.event_name == 'push' && startsWith(github.repository, 'khellang/') }}
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: EFCore.Sqlite.NodaTime
path: nupkgs

0 comments on commit d93d5e7

Please sign in to comment.