Update Directory.Build.props #22
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: reflection-events-client-cd-nuget | |
on: | |
push: | |
branches: [main] | |
workflow_dispatch: | |
jobs: | |
deploy: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: microsoft/[email protected] | |
with: | |
msbuild-architecture: x64 | |
- uses: nuget/setup-nuget@v2 | |
with: | |
nuget-api-key: ${{ secrets.NUGET_API_KEY }} | |
- name: Setup .NET Core SDK 8.x | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: 8.x | |
- name: Fetch the certificate | |
run: | | |
$signing_keys_payload = [System.Convert]::FromBase64String("${{ secrets.STRONG_NAME_KEY }}") | |
$currentDirectory = Get-Location | |
$certificatePath = Join-Path -Path $currentDirectory -ChildPath "src/lepo.snk" | |
[IO.File]::WriteAllBytes("$certificatePath", $signing_keys_payload) | |
- name: Install dependencies | |
run: dotnet restore | |
- name: Build | |
run: dotnet build ReflectionEventing.sln --configuration Release --no-restore -p:SourceLinkEnabled=true | |
- name: Run tests | |
run: dotnet test ReflectionEventing.sln --configuration Release --no-restore --no-build --verbosity quiet | |
- name: Publish the package to NuGet.org | |
run: nuget push **\*.nupkg -NonInteractive -SkipDuplicate -Source 'https://api.nuget.org/v3/index.json' | |
- name: Upload NuGet packages as artifacts | |
uses: actions/upload-artifact@v3 | |
with: | |
name: nuget-packages | |
path: '**\*.nupkg' |