Skip to content

Commit

Permalink
Stop using preview and do release build (#4317)
Browse files Browse the repository at this point in the history
* #3871 Stop using preview and do release build

* #3871 Switch to stable version of .NET
  • Loading branch information
rockfordlhotka authored Nov 13, 2024
1 parent 4717c6c commit c2b054a
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
1 change: 0 additions & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ jobs:
uses: actions/setup-dotnet@v4
with:
dotnet-version: '9.0'
include-prerelease: True

- name: Build
run: dotnet build Source\csla.test.sln
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,12 @@ jobs:
uses: actions/setup-dotnet@v4
with:
dotnet-version: '9.0'
dotnet-quality: 'preview'

- name: Install .NET MAUI workloads
run: dotnet workload install maui

- name: Build
run: dotnet build Source\csla.build.sln
run: dotnet build Source\csla.build.sln --configuration Release

- name: Push NuGet packages
run: dotnet nuget push bin\packages\*.nupkg --source https://api.nuget.org/v3/index.json --api-key ${{ secrets.NUGET_API_KEY }}

0 comments on commit c2b054a

Please sign in to comment.