@@ -215,6 +215,54 @@ the hard work, even if it is incomplete.
215
215
216
216
[ CODEOWNERS ] : https://github.com/google/comprehensive-rust/blob/main/.github/CODEOWNERS
217
217
218
+ ## Publication Workflow
219
+
220
+ > This section is for the developers of Comprehensive Rust, but it might give
221
+ > you valuable background information on how the translations are published.
222
+
223
+ When a change is made to the ` main ` branch, the
224
+ [ ` publish.yml ` ] ( https://github.com/google/comprehensive-rust/blob/main/.github/workflows/publish.yml )
225
+ GitHub CI workflow starts.
226
+
227
+ The ` publish ` job in this workflow will:
228
+
229
+ - Install dependencies as described in [ ` CONTRIBUTING ` ] ( CONTRIBUTING.md ) .
230
+
231
+ - Build every translation of the course, including the original English, using
232
+ [ ` build.sh ` ] ( https://github.com/google/comprehensive-rust/blob/main/.github/workflows/build.sh ) .
233
+ The English HTML ends up in ` book/html/ ` , the HTML for the ` xx ` language ends up in
234
+ ` book/xx/html/ ` .
235
+
236
+ - Publish the entire ` book/html/ ` directory to
237
+ https://google.github.io/comprehensive-rust/ .
238
+
239
+ ### ` build.sh `
240
+
241
+ The ` build.sh ` script is used both when testing code from a PR and when
242
+ publishing the finished book.
243
+
244
+ The job of the script is to call ` mdbook build ` , but with a few extra steps:
245
+
246
+ - It will enable the PDF output using ` mdbook-pandoc ` . This is disabled by
247
+ default to make it easier for people to run ` mdbook build ` without having to
248
+ configure LaTeX.
249
+
250
+ #### Restoring Translations
251
+
252
+ When building a translation, ` build.sh ` will restore all Markdown files to how
253
+ they looked at the time recorded in the POT-Creation-Date header. This means
254
+ that:
255
+
256
+ - A translation does not degrade when the English text is changed.
257
+ - A translation will not received the latest fixes to the English text.
258
+
259
+ The script restores the Markdown with a simple `git restore --source
260
+ $LAST_COMMIT src/ third_party/` command, where ` $LAST_COMMIT` is the commit at
261
+ the time of the POT-Creation-Date header.
262
+
263
+ A consequence of this is that we use the latest theme, CSS, JavaScript, etc for
264
+ each translation.
265
+
218
266
## Status reports
219
267
220
268
Two translation status reports are automatically generated:
0 commit comments