Skip to content

XML documentation generation always enabled (#1454) #13

XML documentation generation always enabled (#1454)

XML documentation generation always enabled (#1454) #13

Workflow file for this run

# ------------------------------------------------------------------------------
# <auto-generated>
#
# This code was generated.
#
# - To turn off auto-generation set:
#
# [GitHubActions (AutoGenerate = false)]
#
# - To trigger manual generation invoke:
#
# nuke --generate-configuration GitHubActions_release --host GitHubActions
#
# </auto-generated>
# ------------------------------------------------------------------------------
name: release
on:
push:
tags:
- 'v*'
jobs:
windows-latest:
name: windows-latest
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- uses: actions/setup-dotnet@v1
with:
dotnet-version: |
5.0.x
6.0.x
- name: Cache .nuke/temp, ~/.nuget/packages
uses: actions/cache@v2
with:
path: |
.nuke/temp
~/.nuget/packages
key: ${{ runner.os }}-${{ hashFiles('**/global.json', '**/*.csproj') }}
- name: Run './build.cmd Verify Cover Publish'
run: ./build.cmd Verify Cover Publish --no-logo
env:
GitHubToken: ${{ secrets.GITHUB_TOKEN }}
NUGET_API_KEY: ${{ secrets.NUGET_API_KEY }}
- uses: actions/upload-artifact@v1
with:
name: testresults
path: artifacts/testresults
- uses: actions/upload-artifact@v1
with:
name: reports
path: artifacts/reports
- uses: actions/upload-artifact@v1
with:
name: packages
path: artifacts/packages