-
Notifications
You must be signed in to change notification settings - Fork 19
135 lines (118 loc) · 5.47 KB
/
AwesomeOxygenScriptforDITADocBuilding_CG.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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
# This workflow will use OxygenScript to build features.
name: Awesome OxygenScript for DITA doc building (CG SDK)
on:
push:
# branches: [ master, 'release/**' ]
branches: [ master ]
pull_request:
# branches: [ 'release/rtc/3.6.2-all' ]
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: montudor/action-zip@v1
- name: Set up JDK 8
uses: actions/setup-java@v3
with:
java-version: '8.0.332+9'
distribution: 'temurin'
- name: Get branch name
id: branch-name
uses: tj-actions/branch-names@v7
- name: DITA doc building
run: |
cd scripts/oxygen/scripts
echo "Start building documentation for CSharp CN"
echo "-----------------------------------------------------------------------------------------------"
echo "-----------------------------------------------------------------------------------------------"
./transform.sh -i ../../../dita/RTC/RTC_API_CS.ditamap -sn "DITA Map HTML5 - CG CSharp" -s ../../../.github/workflows/exported_scenarios.scenarios -v
echo "Start building documentation for Flutter CN"
echo "-----------------------------------------------------------------------------------------------"
echo "-----------------------------------------------------------------------------------------------"
./transform.sh -i ../../../dita/RTC/RTC_API_Flutter.ditamap -sn "DITA Map HTML5 - CG Flutter" -s ../../../.github/workflows/exported_scenarios.scenarios -v
echo "Start building documentation for CSharp EN"
echo "-----------------------------------------------------------------------------------------------"
echo "-----------------------------------------------------------------------------------------------"
./transform.sh -i ../../../en-US/dita/RTC/RTC_API_CS.ditamap -sn "DITA Map HTML5 - CG CSharp" -s ../../../.github/workflows/exported_scenarios_en.scenarios -v
echo "Start building documentation for Flutter EN"
echo "-----------------------------------------------------------------------------------------------"
echo "-----------------------------------------------------------------------------------------------"
./transform.sh -i ../../../en-US/dita/RTC/RTC_API_Flutter.ditamap -sn "DITA Map HTML5 - CG Flutter" -s ../../../.github/workflows/exported_scenarios_en.scenarios -v
- name: zip files
run: |
cd dita/RTC/out
zip -qq -r flutter_cg_cn_doc.zip "flutter_cg"
ls
zip -qq -r cs_cg_cn_doc.zip "csharp_cg"
cd ../../../en-US/dita/RTC/out
ls
zip -qq -r flutter_cg_en_doc.zip "flutter_cg_en"
ls
zip -qq -r cs_cg_en_doc.zip "csharp_cg_en"
ls
- name: Upload Flutter CG CN doc Artifact
uses: actions/upload-artifact@v3
with:
path: dita/RTC/out/flutter_cg_cn_doc.zip
name: flutter_cg_cn_doc.zip
- name: Upload CSharp CG CN doc Artifact
uses: actions/upload-artifact@v3
with:
path: dita/RTC/out/cs_cg_cn_doc.zip
name: cs_cg_cn_doc.zip
- name: Upload Flutter CG EN doc Artifact
uses: actions/upload-artifact@v3
with:
path: en-US/dita/RTC/out/flutter_cg_en_doc.zip
name: flutter_cg_en_doc.zip
- name: Upload CSharp CG EN doc Artifact
uses: actions/upload-artifact@v3
with:
path: en-US/dita/RTC/out/cs_cg_en_doc.zip
name: cs_cg_en_doc.zip
- name: Upload Flutter CG CN doc Artifact
if: github.ref_name == github.event.repository.default_branch
uses: svenstaro/[email protected]
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: dita/RTC/out/flutter_cg_cn_doc.zip
asset_name: flutter_cg_cn_doc.zip
tag: ${{ steps.branch-name.outputs.current_branch }}-build
make_latest: false
overwrite: true
body: "DITA docs."
- name: Upload CSharp CG CN doc to release
if: github.ref_name == github.event.repository.default_branch
uses: svenstaro/[email protected]
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: dita/RTC/out/cs_cg_cn_doc.zip
asset_name: cs_cg_cn_doc.zip
tag: ${{ steps.branch-name.outputs.current_branch }}-build
make_latest: false
overwrite: true
body: "DITA docs."
- name: Upload Flutter CG EN doc to release
if: github.ref_name == github.event.repository.default_branch
uses: svenstaro/[email protected]
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: en-US/dita/RTC/out/flutter_cg_en_doc.zip
asset_name: flutter_cg_en_doc.zip
tag: ${{ steps.branch-name.outputs.current_branch }}-build
make_latest: false
overwrite: true
body: "DITA docs."
- name: Upload CSharp CG EN doc to release
if: github.ref_name == github.event.repository.default_branch
uses: svenstaro/[email protected]
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: en-US/dita/RTC/out/cs_cg_en_doc.zip
asset_name: cs_cg_en_doc.zip
tag: ${{ steps.branch-name.outputs.current_branch }}-build
make_latest: false
overwrite: true
body: "DITA docs."