Staging
v0.8.1
Revision 103058e19bea48f4a80afde51df04338a753e952 authored by Miss Islington (bot) on 04 June 2018, 20:41:49 UTC, committed by GitHub on 04 June 2018, 20:41:49 UTC
(cherry picked from commit 2a4a62ba4ae770bbc7b7fdec0760031c83fe1f7b)

Co-authored-by: Steve Dower <steve.dower@microsoft.com>
1 parent 150033d
Raw File
docs-release.yml
# Current docs for the syntax of this file are at:
#  https://github.com/Microsoft/vsts-agent/blob/master/docs/preview/yamlgettingstarted.md

name: $(BuildDefinitionName)_$(Date:yyyyMMdd)$(Rev:.rr)

queue:
  name: Hosted Linux Preview

#variables:

steps:
- checkout: self
  clean: true
  fetchDepth: 5

- script: sudo apt-get update && sudo apt-get install -qy --force-yes texlive-full 
  displayName: 'Install LaTeX'

- task: UsePythonVersion@0
  displayName: 'Use Python 3.6 or later'
  inputs:
    versionSpec: '>=3.6'

- script: python -m pip install sphinx blurb python-docs-theme
  displayName: 'Install build dependencies'

- script: make dist PYTHON=python SPHINXBUILD='python -m sphinx' BLURB='python -m blurb'
  workingDirectory: '$(build.sourcesDirectory)/Doc'
  displayName: 'Build documentation'

- task: PublishBuildArtifacts@1
  displayName: 'Publish build'
  inputs:
    PathToPublish: '$(build.sourcesDirectory)/Doc/build'
    ArtifactName: build
    publishLocation: Container

- task: PublishBuildArtifacts@1
  displayName: 'Publish dist'
  inputs:
    PathToPublish: '$(build.sourcesDirectory)/Doc/dist'
    ArtifactName: dist
    publishLocation: Container
back to top