chore(deps): bump xunit.runner.visualstudio from 2.5.0 to 2.5.3 #289
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: Build | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
release: | |
types: | |
- published | |
workflow_dispatch: | |
env: | |
DOTNET_NOLOGO: true | |
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true | |
DOTNET_CLI_TELEMETRY_OPTOUT: true | |
MINVERBUILDMETADATA: build.${{github.run_number}} | |
jobs: | |
build: | |
name: Build-${{matrix.os}} | |
runs-on: ${{matrix.os}} | |
strategy: | |
matrix: | |
os: [ ubuntu-latest, windows-latest, macOS-latest ] | |
steps: | |
- name: "Checkout" | |
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3 | |
with: | |
lfs: true | |
fetch-depth: 0 | |
- name: "Install .NET Core SDK" | |
uses: actions/setup-dotnet@3447fd6a9f9e57506b15f895c5b76d3b197dc7c2 # v3.2.0 | |
- name: "Dotnet Tool Restore" | |
run: dotnet tool restore | |
- name: "Dotnet Cake Build" | |
run: dotnet cake --target=Build | |
- name: "Dotnet Cake Benchmark" | |
run: dotnet cake --target=Benchmark | |
- name: "Dotnet Cake Test" | |
run: dotnet cake --target=Test | |
- name: "Dotnet Cake Pack" | |
run: dotnet cake --target=Pack | |
- name: "Publish artifacts" | |
uses: actions/upload-artifact@0b7f8abb1508181956e8e162db84b466c27e18ce # v3.1.2 | |
with: | |
name: ${{matrix.os}} | |
path: "./artifacts" | |
push-github-packages: | |
name: "Push GitHub Packages" | |
needs: build | |
if: github.ref == 'refs/heads/main' || github.event_name == 'release' | |
environment: | |
name: "GitHub Packages" | |
url: https://github.com/omnibor/omnibor-dotnet/packages | |
permissions: | |
packages: write | |
runs-on: windows-latest | |
steps: | |
- name: "Download Artifact" | |
uses: actions/download-artifact@9bc31d5ccc31df68ecc42ccf4149144866c47d8a # v3.0.2 | |
with: | |
name: "windows-latest" | |
- name: "Dotnet NuGet Add Source" | |
run: dotnet nuget add source https://nuget.pkg.github.com/omnibor/index.json --name GitHub --username omnibor --password ${{secrets.GITHUB_TOKEN}} | |
shell: pwsh | |
- name: "Dotnet NuGet Push" | |
run: dotnet nuget push .\*.nupkg --api-key ${{ github.token }} --source GitHub --skip-duplicate | |
shell: pwsh | |
push-nuget: | |
name: "Push NuGet Packages" | |
needs: build | |
if: github.event_name == 'release' | |
environment: | |
name: "NuGet" | |
url: https://www.nuget.org/packages/JamieMagee.OmniBOR | |
runs-on: windows-latest | |
steps: | |
- name: "Download Artifact" | |
uses: actions/download-artifact@9bc31d5ccc31df68ecc42ccf4149144866c47d8a # v3.0.2 | |
with: | |
name: "windows-latest" | |
- name: "Dotnet NuGet Push" | |
run: | | |
Get-ChildItem .\ -Filter *.nupkg | | |
Where-Object { !$_.Name.Contains('preview') } | | |
ForEach-Object { dotnet nuget push $_ --source https://api.nuget.org/v3/index.json --skip-duplicate --api-key ${{secrets.NUGET_API_KEY}} } | |
shell: pwsh |