26 lines
576 B
YAML
26 lines
576 B
YAML
# ASP.NET
|
|
|
|
# Build and test ASP.NET projects.
|
|
# Add steps that publish symbols, save build artifacts, deploy, and more:
|
|
# https://docs.microsoft.com/azure/devops/pipelines/apps/aspnet/build-aspnet-4
|
|
|
|
trigger:
|
|
- master
|
|
|
|
pool:
|
|
vmImage: 'windows-latest'
|
|
|
|
steps:
|
|
- task: FAKE5@1
|
|
name: Run fake bundle
|
|
inputs:
|
|
FakeVersion: '5.16.1'
|
|
FakeScript: 'build.fsx'
|
|
ScriptArguments: 'bundle'
|
|
|
|
- task: PublishBuildArtifacts@1
|
|
name: Publish deploy folder as artifact
|
|
inputs:
|
|
PathtoPublish: 'deploy'
|
|
ArtifactName: 'lunchrun-deploy'
|
|
publishLocation: 'Container' |