-
Notifications
You must be signed in to change notification settings - Fork 3
57 lines (54 loc) · 2.07 KB
/
specification.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
name: build specifications and KPIs
on:
push:
branches:
- main
paths:
- 'standard/**'
- 'kpi/**'
env:
SPEC_FILE_BASENAME: wcmp2-DRAFT
KPI_FILE_BASENAME: wcmp2-kpi-DRAFT
jobs:
build-wcmp2:
name: Generate documentation
runs-on: ubuntu-latest
steps:
- name: Install dependencies
run: |
sudo apt-get update -y \
&& sudo apt-get install -y pandoc \
&& sudo gem install asciidoctor asciidoctor-pdf
- name: checkout repository
uses: actions/checkout@v3
- name: build specification
run: |
mkdir -p /tmp/wcmp2/standard/images \
&& cd standard \
&& asciidoctor --trace -o /tmp/wcmp2/standard/${SPEC_FILE_BASENAME}.html index.adoc \
&& asciidoctor --trace --backend docbook --out-file - index.adoc | pandoc --from docbook --to docx --output /tmp/wcmp2/standard/${SPEC_FILE_BASENAME}.docx \
&& asciidoctor --trace -r asciidoctor-pdf --trace -b pdf -o /tmp/wcmp2/standard/${SPEC_FILE_BASENAME}.pdf index.adoc \
&& cp images/*.png /tmp/wcmp2/standard/images \
&& cd ..
- name: build KPIs
run: |
mkdir -p /tmp/wcmp2/standard/images \
&& cd kpi \
&& asciidoctor --trace -o /tmp/wcmp2/kpi/${KPI_FILE_BASENAME}.html index.adoc \
&& asciidoctor --trace --backend docbook --out-file - index.adoc | pandoc --from docbook --to docx --output /tmp/wcmp2/kpi/${KPI_FILE_BASENAME}.docx \
&& asciidoctor --trace -r asciidoctor-pdf --trace -b pdf -o /tmp/wcmp2/kpi/${KPI_FILE_BASENAME}.pdf index.adoc \
&& cd ..
- name: checkout gh-pages branch
uses: actions/checkout@v3
with:
ref: gh-pages
- name: update gh-pages branch and publish
run: |
git checkout gh-pages
git config --global user.email "[email protected]"
git config --global user.name "Tom Kralidis"
rm -rf standard kpi
mv -f /tmp/wcmp2/* .
git add .
git commit -am "update WMCP 2 build"
git push