Skip to content

Commit

Permalink
build: fix goofs
Browse files Browse the repository at this point in the history
  • Loading branch information
wjrogers committed Apr 27, 2023
1 parent a96c93b commit a4b68dc
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,9 @@ jobs:

- uses: actions/checkout@v3

- run: dotnet restore --locked-mode -f ${{ matrix.framework }}
- run: dotnet test --no-restore -c Release -f ${{ matrix.framework }} --verbosity normal
- run: dotnet restore --locked-mode XO.EntityFrameworkCore.Tests
- run: dotnet build --no-restore -c Release -f ${{ matrix.framework }} XO.EntityFrameworkCore.Tests
- run: dotnet test --no-build -c Release -f ${{ matrix.framework }} --verbosity normal
build:
runs-on: ubuntu-latest
env:
Expand All @@ -49,7 +50,7 @@ jobs:
- uses: dotnet/nbgv@master
id: nbgv

- run: dotnet restore --locked-mode
- run: dotnet restore --locked-mode XO.EntityFrameworkCore.NpgsqlJsonSerializerOptions
- run: dotnet pack --no-restore -o packages -c Release XO.EntityFrameworkCore.NpgsqlJsonSerializerOptions
- run: dotnet nuget push -k "${{ github.token }}" -s "$NUGET_SOURCE" "packages/*.nupkg"

Expand Down

0 comments on commit a4b68dc

Please sign in to comment.