Tuple patterns for input #82
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
ο»Ώ# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json | |
name: 'CI' | |
on: | |
workflow_dispatch: | |
inputs: | |
deploy_nuget_locally: | |
type: boolean | |
description: π deploy package to GH private | |
default: false | |
push: | |
branches: | |
- 'main' | |
paths-ignore: | |
- '**/*.md' | |
pull_request: | |
branches: | |
- '*' | |
paths-ignore: | |
- '**/*.md' | |
release: | |
types: | |
- published | |
env: | |
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: 1 | |
DOTNET_NOLOGO: true | |
NuGetDirectory: ${{ github.workspace}}/nuget | |
defaults: | |
run: | |
shell: pwsh | |
jobs: | |
create_nuget: | |
name: π¦ create NuGet | |
runs-on: ubuntu-latest | |
steps: | |
- name: π€ checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 # Get all history to allow automatic versioning using MinVer | |
- name: π setup .NET # Install the .NET SDK indicated in the global.json file | |
uses: actions/setup-dotnet@v4 | |
- name: π update release notes | |
if: github.event_name == 'release' | |
env: | |
RELEASE_NAME: ${{ github.event.release.name }} | |
RELEASE_BODY: ${{ github.event.release.body }} | |
run: | | |
$name = $env:RELEASE_NAME | |
$body = $env:RELEASE_BODY | |
$releaseNotes = "# Release ${{ github.event.release.tag_name }}" | |
if($name){ | |
$releaseNotes = $releaseNotes + " - " + $name | |
} | |
if($body){ | |
$releaseNotes = $releaseNotes + "`r`n`r`n" + $body | |
} | |
foreach($propFile in (Get-ChildItem "${{ github.workspace }}" -Recurse -Include "*.csproj", "Directory.Build.props", "Directory.Build.targets")) { | |
Write-Host "Found project file '$propFile'" | |
$propFileDoc = [xml](Get-Content $propFile) | |
$releaseNotesNode = $propFileDoc.SelectSingleNode("Project//PropertyGroup/PackageReleaseNotes[starts-with(., 'RELEASE_NOTES_PLACEHOLDER')]") | |
if($releaseNotesNode.InnerText -ne $null) | |
{ | |
Write-Host "`tPATCHING '$propFile' with new release notes" | |
$releaseNotesNode.InnerText = "$releaseNotes" | |
$propFileDoc.Save($propFile) | |
} | |
} | |
- name: π¦ pack | |
run: dotnet pack --configuration Release --output ${{ env.NuGetDirectory }} | |
- name: β¬οΈ upload packages | |
uses: actions/upload-artifact@v4 | |
with: | |
name: nuget | |
if-no-files-found: error | |
retention-days: 7 | |
path: ${{ env.NuGetDirectory }}/*.nupkg | |
run_test: | |
name: π§ͺ run tests | |
runs-on: ubuntu-latest | |
steps: | |
- name: π€ checkout | |
uses: actions/checkout@v4 | |
- name: π setup .NET | |
uses: actions/setup-dotnet@v4 | |
- name: π§ͺ run tests and move results | |
run: | | |
dotnet test --configuration Release --logger "trx;LogFilePrefix=Test" | |
New-Item -Path 'TR' -ItemType Directory -Force | Out-Null | |
foreach($file in (Get-ChildItem -Recurse -Include *.trx)) { | |
$newFile = Join-Path (Get-Location).Path 'TR' "$($file.Directory.Parent.Name.Replace('Nemesis.TextParsers.', '').Replace('.Tests', ''))$($file.Name -replace 'Test_','_')" | |
Move-Item -Path "$($file.FullName)" -Destination "$newFile" | |
} | |
- name: β¬οΈ upload test results | |
uses: actions/upload-artifact@v4 | |
if: success() || failure() # run this step even if previous step failed | |
with: | |
name: TestResults | |
if-no-files-found: error | |
retention-days: 7 | |
path: "**/*.trx" | |
- name: π tests results | |
uses: dorny/test-reporter@v1 | |
if: success() || failure() # run this step even if previous step failed | |
with: | |
name: π tests results | |
reporter: dotnet-trx | |
path: "**/*.trx" | |
fail-on-error: 'true' | |
fail-on-empty: 'true' | |
deploy: | |
name: π deploy | |
if: github.event_name == 'release' || (github.event_name == 'workflow_dispatch' && github.event.inputs.deploy_nuget_locally == 'true') | |
runs-on: ubuntu-latest | |
needs: [ create_nuget, run_test ] | |
steps: | |
- name: β¬οΈ download packages | |
uses: actions/download-artifact@v4 | |
with: | |
name: nuget | |
path: ${{ env.NuGetDirectory }} | |
- name: π setup .NET | |
uses: actions/setup-dotnet@v4 | |
- name: π¦ publish NuGet package | |
env: | |
EVENT_NAME: ${{ github.event_name }} | |
run: | | |
$key = ($env:EVENT_NAME -eq 'release') ? "${{ secrets.NUGET_API_KEY }}" : "${{ secrets.GH_PACKAGE_REGISTRY_API_KEY }}" | |
$source = ($env:EVENT_NAME -eq 'release') ? "https://api.nuget.org/v3/index.json" : "https://nuget.pkg.github.com/MichalBrylka/index.json" | |
foreach($file in (Get-ChildItem "${{ env.NuGetDirectory }}" -Recurse -Include *.nupkg)) { | |
dotnet nuget push $file --api-key "$key" --source "$source" --skip-duplicate | |
} |