Feature/update package #1
Workflow file for this run
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
name: .NET Core | |
on: | |
push: | |
branches: | |
- master | |
- dev | |
pull_request: | |
types: [ opened, synchronize, reopened ] | |
env: | |
NuGetDirectory: ${{github.workspace}}/nuget | |
SONAR_HOST: https://sonarcloud.io | |
SONAR_ORGANIZATION: innovt | |
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} | |
SONAR_PROJECT_KEY: Innovtt_Innovt.Platform | |
jobs: | |
build: | |
name: Build and analyze | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-java@v4 | |
with: | |
distribution: 'zulu' # See 'Supported distributions' for available options | |
java-version: '21' | |
- name: Setup .NET Core | |
uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: 8.0.201 | |
- name: AddNugetSource | |
run: dotnet nuget add source --username USERNAME --password ${{ secrets.NUGET_API_KEY }} --store-password-in-clear-text --name github "https://nuget.pkg.github.com/Innovtt/index.json" | |
- name: Install Sonnar Scaner | |
run: dotnet tool install --global dotnet-sonarscanner | |
- name: Build | |
working-directory: src | |
run: | | |
dotnet sonarscanner begin /d:sonar.token=$SONAR_TOKEN /d:sonar.host.url=$SONAR_HOST /o:$SONAR_ORGANIZATION /k:$SONAR_PROJECT_KEY /d:sonar.cs.opencover.reportsPaths="**/testresults/coverage.opencover.xml" /d:sonar.coverage.exclusions=**Test*.cs /d:sonar.cs.vstest.reportsPaths=./testresults/*.trx ; | |
dotnet build -c Release | |
dotnet test -c Release --logger trx --results-directory ./testresults /p:CollectCoverage=true /p:CoverletOutputFormat=opencover /p:CoverletOutput=./testresults/coverage.opencover.xml | |
dotnet sonarscanner end /d:sonar.token=$SONAR_TOKEN | |
- name: PackProject | |
if: github.ref == 'refs/heads/master' | |
working-directory: src | |
run: dotnet pack --configuration Release --output ${{ env.NuGetDirectory }} | |
- name: PushPackages | |
if: github.ref == 'refs/heads/master' | |
run: dotnet nuget push "${{ env.NuGetDirectory }}/*.nupkg" --api-key ${{ secrets.NUGET_API_KEY }} --source "github" --skip-duplicate |