Files
lunchrun-safe/azure-pipelines.yml
benjaminramey 9bd2c12993 Fix task names
2019-11-03 02:15:16 +00:00

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'