2023-01-03 15:54:30 +02:00
|
|
|
name: Publish
|
2022-12-21 17:50:05 +02:00
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
2023-01-03 15:54:30 +02:00
|
|
|
branches:
|
|
|
|
- main
|
2022-12-21 17:50:05 +02:00
|
|
|
workflow_dispatch:
|
|
|
|
|
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
pages: write
|
|
|
|
id-token: write
|
|
|
|
|
|
|
|
# Allow one concurrent deployment
|
|
|
|
concurrency:
|
2023-01-03 15:54:30 +02:00
|
|
|
group: pages
|
2022-12-21 17:50:05 +02:00
|
|
|
cancel-in-progress: true
|
|
|
|
|
2023-01-03 15:54:30 +02:00
|
|
|
env:
|
|
|
|
CARGO_TERM_COLOR: always
|
2023-02-15 16:10:16 +02:00
|
|
|
# Update the language picker in index.hbs to link new languages.
|
2023-09-18 18:17:40 +02:00
|
|
|
LANGUAGES: bn da de es fa fr it ja ko pt-BR zh-CN zh-TW
|
2023-01-03 15:54:30 +02:00
|
|
|
|
2022-12-21 17:50:05 +02:00
|
|
|
jobs:
|
2023-01-03 15:54:30 +02:00
|
|
|
publish:
|
2022-12-21 17:50:05 +02:00
|
|
|
environment:
|
|
|
|
name: github-pages
|
|
|
|
url: ${{ steps.deployment.outputs.page_url }}
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
|
|
|
uses: actions/checkout@v3
|
2023-09-25 09:52:39 +02:00
|
|
|
with:
|
|
|
|
# We need the full history below.
|
|
|
|
fetch-depth: 0
|
2022-12-21 19:43:12 +02:00
|
|
|
|
2023-01-03 15:54:30 +02:00
|
|
|
- name: Setup Rust cache
|
2023-01-23 18:08:29 +02:00
|
|
|
uses: ./.github/workflows/setup-rust-cache
|
2022-12-21 19:43:12 +02:00
|
|
|
|
2022-12-21 17:50:05 +02:00
|
|
|
- name: Install mdbook
|
2023-01-23 18:08:29 +02:00
|
|
|
uses: ./.github/workflows/install-mdbook
|
2022-12-21 19:43:12 +02:00
|
|
|
|
2023-01-24 13:07:04 +02:00
|
|
|
- name: Build course in English
|
|
|
|
run: mdbook build -d book
|
|
|
|
|
2023-04-05 13:02:52 +02:00
|
|
|
- name: Zip exercise templates
|
2023-04-05 17:15:42 +02:00
|
|
|
run: cd book/exerciser && zip --recurse-paths ../html/comprehensive-rust-exercises.zip comprehensive-rust-exercises/
|
2023-04-05 13:02:52 +02:00
|
|
|
|
2023-01-24 13:07:04 +02:00
|
|
|
- name: Build all translations
|
|
|
|
run: |
|
|
|
|
for po_lang in ${{ env.LANGUAGES }}; do
|
2023-09-25 09:52:39 +02:00
|
|
|
POT_CREATION_DATE=$(grep --max-count 1 '^"POT-Creation-Date:' po/$po_lang.po | sed -E 's/".*: (.*)\\n"/\1/')
|
|
|
|
if [[ $POT_CREATION_DATE == "" ]]; then
|
|
|
|
POT_CREATION_DATE=now
|
|
|
|
fi
|
|
|
|
echo "::group::Building $po_lang translation as of $POT_CREATION_DATE"
|
|
|
|
rm -r src/
|
|
|
|
git restore --source "$(git rev-list -n 1 --before "$POT_CREATION_DATE" @)" src/
|
|
|
|
|
|
|
|
# Set language and adjust site URL. Clear the redirects
|
|
|
|
# since they are in sync with the source files, not the
|
|
|
|
# translation.
|
2023-01-24 13:07:04 +02:00
|
|
|
MDBOOK_BOOK__LANGUAGE=$po_lang \
|
|
|
|
MDBOOK_OUTPUT__HTML__SITE_URL=/comprehensive-rust/$po_lang/ \
|
2023-09-25 09:52:39 +02:00
|
|
|
MDBOOK_OUTPUT__HTML__REDIRECT='{}' \
|
2023-01-24 13:07:04 +02:00
|
|
|
mdbook build -d book/$po_lang
|
2023-04-05 17:15:42 +02:00
|
|
|
(cd book/$po_lang/exerciser && zip --recurse-paths ../html/comprehensive-rust-exercises.zip comprehensive-rust-exercises/)
|
2023-04-05 13:02:52 +02:00
|
|
|
mv book/$po_lang/html book/html/$po_lang
|
2023-03-01 23:38:32 +02:00
|
|
|
echo "::endgroup::"
|
2023-01-24 13:07:04 +02:00
|
|
|
done
|
2022-12-21 19:43:12 +02:00
|
|
|
|
2022-12-21 17:50:05 +02:00
|
|
|
- name: Setup Pages
|
2024-01-01 23:40:05 +02:00
|
|
|
uses: actions/configure-pages@v4
|
2022-12-21 19:43:12 +02:00
|
|
|
|
2022-12-21 17:50:05 +02:00
|
|
|
- name: Upload artifact
|
|
|
|
uses: actions/upload-pages-artifact@v1
|
|
|
|
with:
|
2023-04-03 17:18:32 +02:00
|
|
|
path: book/html
|
2022-12-21 19:43:12 +02:00
|
|
|
|
2022-12-21 17:50:05 +02:00
|
|
|
- name: Deploy to GitHub Pages
|
|
|
|
id: deployment
|
2024-01-01 23:53:30 +02:00
|
|
|
uses: actions/deploy-pages@v4
|