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
|
2024-01-08 11:04:19 +02:00
|
|
|
uses: actions/checkout@v4
|
2023-09-25 09:52:39 +02:00
|
|
|
with:
|
2024-01-04 18:04:44 +02:00
|
|
|
fetch-depth: 0 # We need the full history for build.sh below.
|
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
|
2024-01-04 18:04:44 +02:00
|
|
|
run: .github/workflows/build.sh en book
|
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
|
2024-01-04 18:04:44 +02:00
|
|
|
.github/workflows/build.sh $po_lang book/$po_lang
|
2023-04-05 13:02:52 +02:00
|
|
|
mv book/$po_lang/html book/html/$po_lang
|
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
|
2024-01-01 23:58:10 +02:00
|
|
|
uses: actions/upload-pages-artifact@v3
|
2022-12-21 17:50:05 +02:00
|
|
|
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
|