forked from MicrosoftDocs/mslearn-tailspin-spacegame-web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
azure-pipelines.yml
63 lines (50 loc) · 1.37 KB
/
azure-pipelines.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
# ASP.NET Core
# Build and test ASP.NET Core projects targeting .NET Core.
# Add steps that run tests, create a NuGet package, deploy, and more:
# https://docs.microsoft.com/azure/devops/pipelines/languages/dotnet-core
### YamlMime:Yaml
trigger:
- '*'
pool:
vmImage: ubuntu-20.04
demands:
- npm
variables:
buildConfiguration: 'Release'
wwwrootDir: Tailspin.SpaceGame.Web/wwwroot
dotnetSdkVersion: 5.x
steps:
- task: UseDotNet@2
displayName: Use .NET SDK $(dotnetSdkVersion)
inputs:
packageType: sdk
version: $(dotnetSdkVersion)
- task: Npm@1
displayName: Run npm install
inputs:
verbose: false
- task: CmdLine@2
displayName: Compile Sass assets
inputs:
script: './node_modules/.bin/node-sass $(wwwrootDir) --output $(wwwrootDir)'
- task: gulp@1
displayName: Run gulp tasks
- task: CmdLine@2
displayName: Write build info
inputs:
script: 'echo "$(Build.DefinitionName), $(Build.BuildId), $(Build.BuildNumber)" > buildinfo.txt'
workingDirectory: $(wwwrootDir)
- task: DotNetCoreCLI@2
displayName: Restore project dependenties
inputs:
command: restore
projects: '**/*.csproj'
- template: templates/build.yml
parameters:
buildConfiguration: Debug
- template: templates/build.yml
parameters:
buildConfiguration: Release
- task: PublishBuildArtifacts@1
displayName: 'Publish Artifact: drop'
condition: succeeded()