Bump docfx from 2.78.1 to 2.78.2 #26
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: CI | |
on: | |
push: | |
branches: | |
- main | |
- validate/* | |
tags: | |
- v*.* | |
pull_request: | |
env: | |
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true | |
BUILDCONFIGURATION: Release | |
codecov_token: 4dc9e7e2-6b01-4932-a180-847b52b43d35 | |
NUGET_PACKAGES: ${{ github.workspace }}/.nuget/packages/ | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: | |
- ubuntu-22.04 | |
- macos-14 | |
- windows-2022 | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 # avoid shallow clone so nbgv can do its work. | |
- name: ⚙ Install prerequisites | |
run: | | |
./init.ps1 -UpgradePrerequisites | |
dotnet --info | |
# Print mono version if it is present. | |
if (Get-Command mono -ErrorAction SilentlyContinue) { | |
mono --version | |
} | |
shell: pwsh | |
- name: ⚙️ Set pipeline variables based on source | |
run: azure-pipelines/variables/_pipelines.ps1 | |
shell: pwsh | |
- name: 🛠 build | |
run: dotnet build -t:build,pack --no-restore -c ${{ env.BUILDCONFIGURATION }} -warnAsError -warnNotAsError:NU1901,NU1902,NU1903,NU1904 /bl:"${{ runner.temp }}/_artifacts/build_logs/build.binlog" | |
- name: 🧪 test | |
run: azure-pipelines/dotnet-test-cloud.ps1 -Configuration ${{ env.BUILDCONFIGURATION }} -Agent ${{ runner.os }} | |
shell: pwsh | |
- name: 💅🏻 Verify formatted code | |
run: dotnet format --verify-no-changes --no-restore | |
shell: pwsh | |
if: runner.os == 'Linux' | |
- name: 📚 Verify docfx build | |
run: dotnet docfx docfx/docfx.json --warningsAsErrors --disableGitFeatures | |
if: runner.os == 'Linux' | |
- name: ⚙ Update pipeline variables based on build outputs | |
run: azure-pipelines/variables/_pipelines.ps1 | |
shell: pwsh | |
- name: 📥 Collect artifacts | |
run: azure-pipelines/artifacts/_stage_all.ps1 | |
shell: pwsh | |
if: always() | |
- name: 📢 Upload project.assets.json files | |
if: always() | |
uses: actions/upload-artifact@v4 | |
with: | |
name: projectAssetsJson-${{ runner.os }} | |
path: ${{ runner.temp }}/_artifacts/projectAssetsJson | |
continue-on-error: true | |
- name: 📢 Upload variables | |
uses: actions/upload-artifact@v4 | |
with: | |
name: variables-${{ runner.os }} | |
path: ${{ runner.temp }}/_artifacts/Variables | |
continue-on-error: true | |
- name: 📢 Upload build_logs | |
if: always() | |
uses: actions/upload-artifact@v4 | |
with: | |
name: build_logs-${{ runner.os }} | |
path: ${{ runner.temp }}/_artifacts/build_logs | |
continue-on-error: true | |
- name: 📢 Upload test_logs | |
if: always() | |
uses: actions/upload-artifact@v4 | |
with: | |
name: test_logs-${{ runner.os }} | |
path: ${{ runner.temp }}/_artifacts/test_logs | |
continue-on-error: true | |
- name: 📢 Upload testResults | |
if: always() | |
uses: actions/upload-artifact@v4 | |
with: | |
name: testResults-${{ runner.os }} | |
path: ${{ runner.temp }}/_artifacts/testResults | |
continue-on-error: true | |
- name: 📢 Upload coverageResults | |
if: always() | |
uses: actions/upload-artifact@v4 | |
with: | |
name: coverageResults-${{ runner.os }} | |
path: ${{ runner.temp }}/_artifacts/coverageResults | |
continue-on-error: true | |
- name: 📢 Upload symbols | |
uses: actions/upload-artifact@v4 | |
with: | |
name: symbols-${{ runner.os }} | |
path: ${{ runner.temp }}/_artifacts/symbols | |
continue-on-error: true | |
- name: 📢 Upload deployables | |
uses: actions/upload-artifact@v4 | |
with: | |
name: deployables-${{ runner.os }} | |
path: ${{ runner.temp }}/_artifacts/deployables | |
if: always() | |
- name: 📢 Publish code coverage results to codecov.io | |
run: ./azure-pipelines/publish-CodeCov.ps1 -CodeCovToken "${{ env.codecov_token }}" -PathToCodeCoverage "${{ runner.temp }}/_artifacts/coverageResults" -Name "${{ runner.os }} Coverage Results" -Flags "${{ runner.os }}" | |
shell: pwsh | |
timeout-minutes: 3 | |
continue-on-error: true | |
if: env.codecov_token != '' | |
ship: | |
if: startsWith(github.ref, 'refs/tags/v') | |
needs: build | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 1 | |
- name: 🔻 Download deployables artifacts | |
uses: actions/download-artifact@v4 | |
with: | |
name: deployables-Linux | |
path: ${{ runner.temp }}/deployables | |
- name: 🚀 Push NuGet packages | |
run: | | |
rm global.json | |
dotnet nuget push ${{ runner.temp }}/deployables/*.nupkg --source https://api.nuget.org/v3/index.json -k '${{ secrets.NUGET_API_KEY }}' |