We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6e77bef commit 1e47b3aCopy full SHA for 1e47b3a
azure-pipelines.yml
@@ -44,3 +44,19 @@ jobs:
44
dependsOn:
45
- CommitLint
46
condition: succeeded('CommitLint')
47
+
48
+ - job: Documentation
49
+ pool :
50
+ vmImage: 'ubuntu-latest'
51
+ steps:
52
+ - template: .ci/templates/steps/initialize-environment.yml
53
+ - template: .ci/templates/steps/install-dependencies.yml
54
+ - script: |
55
+ npm run docs
56
+ displayName: 'Generating Docs'
57
58
+ git config user.email [email protected]
59
+ git config user.name "Azure Pipelines"
60
+ node .build/publish-gh-pages
61
+ displayName: 'Publishing Docs'
62
+ condition: eq(variables['Build.SourceBranchName'], 'master')
0 commit comments