24 строки
340 B
YAML
24 строки
340 B
YAML
trigger:
|
|
- master
|
|
|
|
pr:
|
|
- master
|
|
|
|
pool:
|
|
vmImage: 'ubuntu-latest'
|
|
|
|
variables:
|
|
BuildConfiguration: Release
|
|
|
|
steps:
|
|
|
|
- task: DotNetCoreCLI@2
|
|
inputs:
|
|
command: run
|
|
projects: "*.csproj"
|
|
arguments: -c $(BuildConfiguration)
|
|
displayName: Build and Run Statiq
|
|
|
|
- publish: output
|
|
artifact: website
|
|
displayName: Publish Artifacts |