Update dependency docfx to 2.78.2 #7989
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
# ------------------------------------------------------------------------------ | |
# <auto-generated> | |
# | |
# This code was generated. | |
# | |
# - To turn off auto-generation set: | |
# | |
# [GitHubActionsSteps (AutoGenerate = false)] | |
# | |
# - To trigger manual generation invoke: | |
# | |
# nuke --generate-configuration GitHubActions_ci --host GitHubActions | |
# | |
# </auto-generated> | |
# ------------------------------------------------------------------------------ | |
name: ci | |
on: | |
push: | |
branches: | |
- 'master' | |
- 'main' | |
- 'next' | |
tags: | |
- 'v*' | |
paths-ignore: | |
- '.codecov.yml' | |
- '.editorconfig' | |
- '.gitattributes' | |
- '.gitignore' | |
- '.gitmodules' | |
- '.lintstagedrc.js' | |
- '.prettierignore' | |
- '.prettierrc' | |
- 'LICENSE' | |
- 'nukeeper.settings.json' | |
- 'omnisharp.json' | |
- 'package-lock.json' | |
- 'package.json' | |
- 'Readme.md' | |
- '.github/dependabot.yml' | |
- '.github/labels.yml' | |
- '.github/release.yml' | |
- '.github/renovate.json' | |
pull_request: | |
branches: | |
- 'master' | |
- 'main' | |
- 'next' | |
paths-ignore: | |
- '.codecov.yml' | |
- '.editorconfig' | |
- '.gitattributes' | |
- '.gitignore' | |
- '.gitmodules' | |
- '.lintstagedrc.js' | |
- '.prettierignore' | |
- '.prettierrc' | |
- 'LICENSE' | |
- 'nukeeper.settings.json' | |
- 'omnisharp.json' | |
- 'package-lock.json' | |
- 'package.json' | |
- 'Readme.md' | |
- '.github/dependabot.yml' | |
- '.github/labels.yml' | |
- '.github/release.yml' | |
- '.github/renovate.json' | |
permissions: | |
actions: read | |
checks: read | |
contents: read | |
deployments: read | |
id-token: none | |
issues: write | |
discussions: none | |
packages: none | |
pages: none | |
pull-requests: write | |
repository-projects: none | |
security-events: none | |
statuses: write | |
jobs: | |
build: | |
permissions: | |
actions: read | |
checks: write | |
contents: read | |
deployments: read | |
id-token: none | |
issues: write | |
discussions: none | |
packages: none | |
pages: none | |
pull-requests: write | |
repository-projects: none | |
security-events: none | |
statuses: write | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/[email protected] | |
with: | |
clean: 'false' | |
fetch-depth: '0' | |
- name: π¨ Use .NET Core 8.0 SDK | |
uses: actions/[email protected] | |
with: | |
dotnet-version: '8.0.x' | |
- name: π¨ Use .NET Core 9.0 SDK | |
uses: actions/[email protected] | |
with: | |
dotnet-version: '9.0.x' | |
- name: π dotnet workload restore | |
continue-on-error: true | |
run: | | |
dotnet workload restore | |
- name: βοΈ dotnet tool restore | |
run: | | |
dotnet tool restore | |
- name: π Restore | |
id: restore | |
run: | | |
dotnet nuke --target DotnetCoreRestore Restore | |
- name: βοΈ Build | |
id: build | |
run: | | |
dotnet .build/bin/Debug/.build.dll --target DotnetCoreBuild Build | |
- name: π¦ Test | |
id: test | |
run: | | |
dotnet .build/bin/Debug/.build.dll --target DotnetCoreTest Test CollectCodeCoverage GenerateCodeCoverageReportCobertura GenerateCodeCoverageBadges GenerateCodeCoverageSummary GenerateCodeCoverageReport | |
- name: π¦ Pack | |
id: pack | |
run: | | |
dotnet .build/bin/Debug/.build.dll --target DotnetCorePack Pack --skip Build | |
- name: Default | |
id: default | |
run: | | |
dotnet .build/bin/Debug/.build.dll --target Default --skip Restore Build Test Pack | |
- name: πΊ Publish logs | |
if: always() | |
uses: actions/[email protected] | |
with: | |
name: 'logs' | |
path: 'artifacts/logs/' | |
- name: πΊ Publish test data | |
if: always() | |
uses: actions/[email protected] | |
with: | |
name: 'test data' | |
path: 'artifacts/test/' | |
- name: π« Publish Test Results | |
if: always() | |
uses: EnricoMi/publish-unit-test-result-action@v2 | |
with: | |
files: 'artifacts/test/**/*.trx' | |
- name: πΊ Publish coverage data | |
if: always() | |
uses: actions/[email protected] | |
with: | |
name: 'coverage' | |
path: 'coverage/' | |
- name: π« Publish Coverage Comment | |
if: github.event_name == 'pull_request' | |
uses: marocchino/sticky-pull-request-comment@v2 | |
with: | |
header: 'Coverage' | |
path: 'coverage/summary/SummaryGithub.md' | |
GITHUB_TOKEN: '${{ secrets.GITHUB_TOKEN }}' | |
- name: π« Publish Codecov Coverage | |
if: (github.event_name != 'pull_request' && github.event_name != 'pull_request_target') || ((github.event_name == 'pull_request' || github.event_name == 'pull_request_target') && github.event.pull_request.user.login != 'renovate[bot]' && github.event.pull_request.user.login != 'dependabot[bot]') | |
uses: codecov/[email protected] | |
with: | |
name: 'actions' | |
token: '${{ secrets.CODECOV_TOKEN }}' | |
- name: πΊ Publish NuGet Packages | |
if: always() | |
uses: actions/[email protected] | |
with: | |
name: 'nuget' | |
path: 'artifacts/nuget/' | |
- name: πΊ Publish Documentation | |
uses: actions/[email protected] | |
with: | |
name: 'docs' | |
path: 'artifacts/docs/' | |
Publish: | |
needs: | |
- Build | |
uses: RocketSurgeonsGuild/actions/.github/workflows/[email protected] | |
secrets: | |
RSG_NUGET_API_KEY: '${{ secrets.RSG_NUGET_API_KEY }}' | |
RSG_AZURE_DEVOPS: '${{ secrets.RSG_AZURE_DEVOPS }}' |