Skip to content

Commit

Permalink
Add Release Configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
johnazariah authored Jul 3, 2024
1 parent e479a1f commit 74b6a3c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,13 +36,13 @@ jobs:
dotnet-version: 8.0.x

- name: Restore dependencies
run: dotnet restore
run: dotnet restore --configuration Release

- name: Build
run: dotnet build --no-restore
run: dotnet build --configuration Release --no-restore

- name: Test
run: dotnet test --no-build --verbosity normal
run: dotnet test --configuration Release --no-build --verbosity normal

- name: Pack
run: dotnet pack --configuration Release "src/CSharp.UnionTypes.SourceGenerator" --output ${{ env.NuGetDirectory }}
Expand Down

0 comments on commit 74b6a3c

Please sign in to comment.