-
Notifications
You must be signed in to change notification settings - Fork 7
43 lines (39 loc) · 1.27 KB
/
build-ls-xcp.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
name: Build Layered Standard XCP
on:
push:
branches-ignore: [ 'temp/*' ]
pull_request:
branches: [ main ]
jobs:
build-ls-xcp:
name: Build Layered Standard XCP
runs-on: ubuntu-20.04
steps:
- name: checkout
uses: actions/checkout@v3
- name: prepare
run: mkdir build
- name: build layered standard XCP
uses: avattathil/asciidoctor-action@master
with:
program: "asciidoctor -D build --backend=html5 --attribute=revnumber=${GITHUB_REF#refs/heads/}-$GITHUB_SHA --attribute=revdate=$(date +%F) docs/index.adoc"
- name: copy images
run: tar cfC - docs images | tar xfC - build
- name: archive layered standard XCP
uses: actions/upload-artifact@v3
with:
name: FMI-LS-XCP
path: build/*
if-no-files-found: error
- name: extract branch name
id: extract_branch
shell: bash
run: echo "branch=$(echo ${GITHUB_REF#refs/heads/})" >> $GITHUB_OUTPUT
- name: deploy
if: github.ref == 'refs/heads/main' && github.event_name == 'push'
uses: peaceiris/[email protected]
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: build
destination_dir: ${{ steps.extract_branch.outputs.branch }}
enable_jekyll: true