forked from MicrosoftDocs/mslearn-tailspin-spacegame-web
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathazure-pipelines.yml
More file actions
67 lines (52 loc) · 1.33 KB
/
Copy pathazure-pipelines.yml
File metadata and controls
67 lines (52 loc) · 1.33 KB
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
64
65
66
67
trigger:
- '*'
pool:
name: dev-pool
variables:
buildConfiguration: 'Release'
wwwRootDir: 'Tailspin.SpaceGame.Web/wwwroot'
dotnetSdkVersion: '6.x'
steps:
# Install Node.js
- task: NodeTool@0
inputs:
versionSpec: '16.x'
displayName: 'Install Node.js'
# Install npm
- script: |
npm install
displayName: 'npm install'
# Install Gulp
- script: |
npm install -g gulp-cli
displayName: 'Install Gulp'
- task: UseDotNet@2
displayName: 'Use .NET SDK 6.x'
inputs:
packageType: sdk
version: $(dotnetSdkVersion)
- task: Npm@1
displayName: 'Run npm install'
inputs:
verbose: false
- script: './node_modules/.bin/node-sass $(wwwRootDir) --output $(wwwRootDir)'
displayName: 'Compile Sass assets'
- task: gulp@1
displayName: 'Run gulp tasks'
- script: 'echo "$(Build.DefinitionName), $(Build.BuildId), $(Build.BuildNumber)" > buildinfo.txt'
displayName: 'Write build info'
workingDirectory: $(wwwRootDir)
- task: DotNetCoreCLI@2
displayName: 'Restore project dependencies'
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()