forked from phil-opp/blog_os
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathazure-pipelines.yml
48 lines (37 loc) · 1.18 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
# Documentation: https://aka.ms/yaml
trigger:
branches:
include:
- '*'
exclude:
- 'staging.tmp'
pool:
vmImage: ubuntu-16.04
steps:
- bash: |
echo "Hello world from $AGENT_NAME running on $AGENT_OS"
echo "Reason: $BUILD_REASON"
echo "Requested for: $BUILD_REQUESTEDFOR"
displayName: 'Build Info'
continueOnError: true
- bash: curl -sL https://github.com/getzola/zola/releases/download/v0.7.0/zola-v0.7.0-x86_64-unknown-linux-gnu.tar.gz | tar zxv
displayName: "Download Zola"
- script: python -m pip install --upgrade pip setuptools wheel
displayName: 'Install Python Tools'
- script: python -m pip install --user -r requirements.txt
displayName: 'Install Python Libraries'
workingDirectory: "blog"
- script: python before_build.py
displayName: "Run before_build.py script"
workingDirectory: "blog"
- script: ../zola build
displayName: "Build Site"
workingDirectory: "blog"
- task: PublishPipelineArtifact@0
inputs:
artifactName: 'generated_site'
targetPath: 'blog/public'
- script: curl -L https://git.io/misspell | bash
displayName: "Install misspell"
- script: bin/misspell -error blog/content
displayName: "Check for common typos"