Merge pull request #83 from Ken-Tucker/dependabot/nuget/coverlet.coll… #137
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This workflow will build a .NET project | |
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-net | |
name: .NET | |
on: | |
push: | |
branches: [ "master" ] | |
pull_request: | |
branches: [ "master" ] | |
env: | |
package_feed: "https://nuget.pkg.github.com/vb2ae/index.json" | |
jobs: | |
build: | |
runs-on: windows-2022 | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 # avoid shallow clone so nbgv can do its work | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: 9.0.x | |
- name: Setup Java SDK | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'microsoft' | |
java-version: 17 | |
- name: Install Microsoft SBom tool | |
run: dotnet tool install --global Microsoft.Sbom.DotNetTool | |
- name: Install Nerdbank Git versioning | |
run: dotnet tool install -g nbgv | |
- name: Set Version | |
run: nbgv cloud | |
- name: search workloads | |
run: dotnet workload search | |
- name: restore workloads | |
run: dotnet workload install maui maui-android maui-ios maui-tizen maui-maccatalyst maui-windows android --source https://api.nuget.org/v3/index.json | |
- name: list workloads | |
run: dotnet workload list | |
- name: Restore dependencies | |
run: dotnet restore -s https://www.myget.org/F/caliburn-micro-builds/api/v3/index.json -s https://api.nuget.org/v3/index.json | |
- name: Build | |
run: dotnet build --configuration Release | |
- name: Test | |
run: dotnet test --configuration Release --no-build --verbosity normal | |
- name: Pack Nuget | |
run: dotnet pack ClientNoSqlDB/ClientNoSqlDB.csproj --configuration Release | |
- name: publish Nuget Packages to GitHub | |
run: dotnet nuget push ${{ vars.UPLOAD_NUGET_PATH }} --source ${{env.package_feed}} --api-key ${{secrets.PUBLISH_NUGET_PACKAGE}} --skip-duplicate | |
if: github.event_name != 'pull_request' | |
- name: Upload Artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: published_nuget | |
path: ClientNoSqlDB/bin/Release/*.nupkg |