-
Notifications
You must be signed in to change notification settings - Fork 0
265 lines (228 loc) · 10.2 KB
/
snapshot.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
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
# This is the basic workflow to build draft documentation
# !NOTE:
# This build produces multiple versions of this document!!
name: Snapshot Build
## This section contains ALL variable specific for this project ##
# The VERSION is the main release number i.e. 1.7 or 2.1
env:
# Common to all builds
BUILD_NAME: ICS-XJDF-QUALITYCONTROL
DOCUMENT_VERSION: '2.2'
# 'BOTH' parameters
BOTH_DOCUMENT_COVER_TITLE: Quality Control Both ICS
BOTH_CONFIG_FILE: Build\ICS_XJDF_QualityControl_Both.ini
BOTH_CONFLUENCE_LABELS: 'ics-xjdf-qualitycontrol-both,ics-draft'
# 'Customer' parameters
CUST_DOCUMENT_COVER_TITLE: Quality Control Customer ICS
CUST_CONFIG_FILE: Build\ICS_XJDF_QualityControl_Customer.ini
CUST_CONFLUENCE_LABELS: 'ics-xjdf-qualitycontrol-customer,ics-draft'
# 'MIS' parameters
MIS_DOCUMENT_COVER_TITLE: Quality Control MIS ICS
MIS_CONFIG_FILE: Build\ICS_XJDF_QualityControl_MIS.ini
MIS_CONFLUENCE_LABELS: 'ics-xjdf-qualitycontrol-mis,ics-draft'
# Same ID for all builds
CONFLUENCE_ID: '1560313992'
# Common metadata to all builds
DOCUMENT_METADATA_COPYRIGHT: 'CIP4 Organization, all rights reserved'
# 'BOTH' metadata
BOTH_DOCUMENT_METADATA_TITLE: 'Quality Control Both ICS'
# 'Customer' metadata
CUST_DOCUMENT_METADATA_TITLE: 'Quality Control Customer ICS'
# 'MIS' metadata
MIS_DOCUMENT_METADATA_TITLE: 'Quality Control MIS ICS'
BUILD_UTILITY_EXE: c:\actions-runner\_work\_tool\document-processing\document-processing.exe
## The remaining section is based upon those common to all draft documentation builds
## It has been modified to allow for three slightly different builds.
# Controls when the action will run
on:
push:
branches: [ master ]
workflow_dispatch:
inputs:
tags:
description: 'Manual Run'
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
build_both:
runs-on: [framemaker-2020]
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# For access to other Git repositories - an access token is required.
- name: Get GitHub Access Token
id: access_token
uses: tibdex/github-app-token@v1
with:
app_id: ${{ secrets.CIP4_GITHUB_ACTIONS_APP_ID }}
private_key: ${{ secrets.CIP4_GITHUB_ACTIONS_APP_KEY }}
# Clean up working directory
- name: Clean up working directory
run: rm -r -fo *
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- name: Checkout source
uses: actions/checkout@v2
with:
path: document
# Check out the build scripts
- name: Checkout build scripts
uses: actions/checkout@v2
with:
repository: cip4/cip4-document-builder
token: ${{ steps.access_token.outputs.token }}
path: builder
# Build the document parameters
- name: Build Document
timeout-minutes: 30
run: >
python ..\builder\scripts\specbuilder.py $env:BOTH_CONFIG_FILE
"$env:BOTH_DOCUMENT_COVER_TITLE $env:DOCUMENT_VERSION Draft $((Get-Date).ToString('yyyyMMdd')) Build-$env:GITHUB_RUN_NUMBER"
"$env:BOTH_DOCUMENT_COVER_TITLE"
"Version $env:DOCUMENT_VERSION Draft $((Get-Date).ToString('yyyyMMdd')) Build-$env:GITHUB_RUN_NUMBER"
"$env:BOTH_DOCUMENT_METADATA_TITLE $env:DOCUMENT_VERSION Draft $((Get-Date).ToString('yyyyMMdd')) Build-$env:GITHUB_RUN_NUMBER"
"$env:DOCUMENT_VERSION Draft $((Get-Date).ToString('yyyyMMdd')) Build-$env:GITHUB_RUN_NUMBER"
"$((Get-Date).ToString('MMMM yyyy')) $env:DOCUMENT_METADATA_COPYRIGHT"
"2000-$((Get-Date).ToString('yyyy'))"
"Run-$env:GITHUB_RUN_NUMBER"
working-directory: ./document
# Mark pages with draft watermark
- name: Watermark pages
run: >
${{ env.BUILD_UTILITY_EXE }} draft "$env:BOTH_DOCUMENT_COVER_TITLE*.pdf"
working-directory: ./document/target
# Upload any artefact produced.
- name: Upload Document
uses: actions/upload-artifact@v4
with:
name: ${{ env.BUILD_NAME }}-build_both-artifact
path: document/target/*.pdf
# Upload to Confluence
- name: Confluence Upload
uses: cip4/action-confluence-upload@master
with:
url: 'https://cip4.atlassian.net/wiki'
username: ${{ secrets.ATLASSIAN_USER }}
password: ${{ secrets.ATLASSIAN_TOKEN }}
contentId: ${{ env.CONFLUENCE_ID }}
label: ${{ env.BOTH_CONFLUENCE_LABELS }}
filePattern: 'document/target/*.pdf'
build_customer:
runs-on: [framemaker-2020]
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# For access to other Git repositories - an access token is required.
- name: Get GitHub Access Token
id: access_token
uses: tibdex/github-app-token@v1
with:
app_id: ${{ secrets.CIP4_GITHUB_ACTIONS_APP_ID }}
private_key: ${{ secrets.CIP4_GITHUB_ACTIONS_APP_KEY }}
# Clean up working directory
- name: Clean up working directory
run: rm -r -fo *
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- name: Checkout source
uses: actions/checkout@v2
with:
path: document
# Check out the build scripts
- name: Checkout build scripts
uses: actions/checkout@v2
with:
repository: cip4/cip4-document-builder
token: ${{ steps.access_token.outputs.token }}
path: builder
# Build the document parameters
- name: Build Document
timeout-minutes: 30
run: >
python ..\builder\scripts\specbuilder.py $env:CUST_CONFIG_FILE
"$env:CUST_DOCUMENT_COVER_TITLE $env:DOCUMENT_VERSION Draft $((Get-Date).ToString('yyyyMMdd')) Build-$env:GITHUB_RUN_NUMBER"
"$env:CUST_DOCUMENT_COVER_TITLE"
"Version $env:DOCUMENT_VERSION Draft $((Get-Date).ToString('yyyyMMdd')) Build-$env:GITHUB_RUN_NUMBER"
"$env:CUST_DOCUMENT_METADATA_TITLE $env:DOCUMENT_VERSION Draft $((Get-Date).ToString('yyyyMMdd')) Build-$env:GITHUB_RUN_NUMBER"
"$env:DOCUMENT_VERSION Draft $((Get-Date).ToString('yyyyMMdd')) Build-$env:GITHUB_RUN_NUMBER"
"$((Get-Date).ToString('MMMM yyyy')) $env:DOCUMENT_METADATA_COPYRIGHT"
"2000-$((Get-Date).ToString('yyyy'))"
"Run-$env:GITHUB_RUN_NUMBER"
working-directory: ./document
# Mark pages with draft watermark
- name: Watermark pages
run: >
${{ env.BUILD_UTILITY_EXE }} draft "$env:CUST_DOCUMENT_COVER_TITLE*.pdf"
working-directory: ./document/target
# Upload any artefact produced.
- name: Upload Document
uses: actions/upload-artifact@v4
with:
name: ${{ env.BUILD_NAME }}-build_customer-artifact
path: document/target/*.pdf
# Upload to Confluence
- name: Confluence Upload
uses: cip4/action-confluence-upload@master
with:
url: 'https://cip4.atlassian.net/wiki'
username: ${{ secrets.ATLASSIAN_USER }}
password: ${{ secrets.ATLASSIAN_TOKEN }}
contentId: ${{ env.CONFLUENCE_ID }}
label: ${{ env.CUST_CONFLUENCE_LABELS }}
filePattern: 'document/target/*.pdf'
build_mis:
runs-on: [framemaker-2020]
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# For access to other Git repositories - an access token is required.
- name: Get GitHub Access Token
id: access_token
uses: tibdex/github-app-token@v1
with:
app_id: ${{ secrets.CIP4_GITHUB_ACTIONS_APP_ID }}
private_key: ${{ secrets.CIP4_GITHUB_ACTIONS_APP_KEY }}
# Clean up working directory
- name: Clean up working directory
run: rm -r -fo *
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- name: Checkout source
uses: actions/checkout@v2
with:
path: document
# Check out the build scripts
- name: Checkout build scripts
uses: actions/checkout@v2
with:
repository: cip4/cip4-document-builder
token: ${{ steps.access_token.outputs.token }}
path: builder
# Build the document parameters
- name: Build Document
timeout-minutes: 30
run: >
python ..\builder\scripts\specbuilder.py $env:MIS_CONFIG_FILE
"$env:MIS_DOCUMENT_COVER_TITLE $env:DOCUMENT_VERSION Draft $((Get-Date).ToString('yyyyMMdd')) Build-$env:GITHUB_RUN_NUMBER"
"$env:MIS_DOCUMENT_COVER_TITLE"
"Version $env:DOCUMENT_VERSION Draft $((Get-Date).ToString('yyyyMMdd')) Build-$env:GITHUB_RUN_NUMBER"
"$env:MIS_DOCUMENT_METADATA_TITLE $env:DOCUMENT_VERSION Draft $((Get-Date).ToString('yyyyMMdd')) Build-$env:GITHUB_RUN_NUMBER"
"$env:DOCUMENT_VERSION Draft $((Get-Date).ToString('yyyyMMdd')) Build-$env:GITHUB_RUN_NUMBER"
"$((Get-Date).ToString('MMMM yyyy')) $env:DOCUMENT_METADATA_COPYRIGHT"
"2000-$((Get-Date).ToString('yyyy'))"
"Run-$env:GITHUB_RUN_NUMBER"
working-directory: ./document
# Mark pages with draft watermark
- name: Watermark pages
run: >
${{ env.BUILD_UTILITY_EXE }} draft "$env:MIS_DOCUMENT_COVER_TITLE*.pdf"
working-directory: ./document/target
# Upload any artefact produced.
- name: Upload Document
uses: actions/upload-artifact@v4
with:
name: ${{ env.BUILD_NAME }}-build_mis-artifact
path: document/target/*.pdf
# Upload to Confluence
- name: Confluence Upload
uses: cip4/action-confluence-upload@master
with:
url: 'https://cip4.atlassian.net/wiki'
username: ${{ secrets.ATLASSIAN_USER }}
password: ${{ secrets.ATLASSIAN_TOKEN }}
contentId: ${{ env.CONFLUENCE_ID }}
label: ${{ env.MIS_CONFLUENCE_LABELS }}
filePattern: 'document/target/*.pdf'