-
Notifications
You must be signed in to change notification settings - Fork 101
63 lines (54 loc) · 2.08 KB
/
build_and_archive_devel_docs.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
58
59
60
61
62
63
name: Build and archive documentation from development branches
on:
push:
branches:
- 'master' # Only master will build both Uyuni and SUSE Manager documentations
- 'manager-4.3' # Other branches will only build SUSE Manager documentation
- 'manager-5.0' # Other branches will only build SUSE Manager documentation
workflow_run:
workflows: ["Update translation files"] # This workflow creates commits, so we need to run after a successful run
types:
- completed
jobs:
run:
runs-on: ubuntu-latest
steps:
- name: Checkout this repository
uses: actions/checkout@v4
with:
path: uyuni-docs
- name: Checkout uyuni-docs-helper repository
uses: actions/checkout@v4
with:
path: uyuni-docs-helper
repository: uyuni-project/uyuni-docs-helper
- name: Configure environment
run: |
alias docker='podman'
mkdir outputs
- name: Build the Uyuni documentation
run: |
cd uyuni-docs-helper
./uyuni-docs-helper -r ${{ github.ref_name }} -g https://github.com/${{ github.repository}}.git -o /tmp -c antora-uyuni-en -p uyuni
cd ..
mkdir ./uyuni # Required so the folder name is included later in the archive
cp -r /tmp/build ./uyuni/uyuni
if: github.ref_name == 'master'
- name: Archive Uyuni Documentation
uses: actions/upload-artifact@v4
with:
name: documentation-uyuni-${{ github.ref_name }}
path: uyuni/
if: github.ref_name == 'master'
- name: Build the SUSE Manager documentation
run: |
cd uyuni-docs-helper
./uyuni-docs-helper -r ${{ github.ref_name }} -g https://github.com/${{ github.repository}}.git -o /tmp -c antora-suma-en -p suma
cd ..
mkdir ./susemanager # Required so the folder name is included later in the archive
cp -r /tmp/build ./susemanager/susemanager
- name: Archive SUSE Manager Documentation
uses: actions/upload-artifact@v4
with:
name: documentation-susemanager-${{ github.ref_name }}
path: susemanager/