2024-05-23 09:42:14 +00:00
|
|
|
# SPDX-FileCopyrightText: 2024 John Livingston <https://www.john-livingston.fr/>
|
|
|
|
#
|
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
2023-02-13 16:58:06 +00:00
|
|
|
name: github pages
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
2023-03-07 13:14:19 +00:00
|
|
|
- documentation # Set a branch to deploy
|
2023-02-13 16:58:06 +00:00
|
|
|
pull_request:
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
deploy:
|
2023-07-14 17:15:30 +00:00
|
|
|
runs-on: ubuntu-22.04
|
2023-02-13 16:58:06 +00:00
|
|
|
steps:
|
2023-03-06 11:06:22 +00:00
|
|
|
- uses: actions/checkout@v3
|
2023-02-13 16:58:06 +00:00
|
|
|
with:
|
|
|
|
submodules: true # Fetch Hugo themes (true OR recursive)
|
|
|
|
fetch-depth: 0 # Fetch all history for .GitInfo and .Lastmod
|
|
|
|
|
2023-07-17 14:33:44 +00:00
|
|
|
# FIXME: ubuntu-22.04 comes with po4a 0.66.
|
|
|
|
# We need at least v0.69.
|
|
|
|
# Github does not provide any other suitable image...
|
2023-07-17 14:44:16 +00:00
|
|
|
# So... we will trick it by first installing the ubuntu package, then downloading the debian package.
|
2023-07-17 14:47:05 +00:00
|
|
|
# Note: libsyntax-keyword-try-perl is required by 0.69, so we will also install it on the first step.
|
2023-07-17 14:44:16 +00:00
|
|
|
- name: Install po4a
|
2023-07-17 14:47:05 +00:00
|
|
|
run: sudo apt update && sudo apt install po4a libsyntax-keyword-try-perl -y
|
2023-07-17 14:44:16 +00:00
|
|
|
|
2023-07-17 14:33:44 +00:00
|
|
|
- name: Install po4a from debian bookworm version
|
2023-07-17 14:42:11 +00:00
|
|
|
run: wget http://ftp.debian.org/debian/pool/main/p/po4a/po4a_0.69-1_all.deb && sudo dpkg -i po4a_0.69-1_all.deb
|
2023-07-14 17:15:30 +00:00
|
|
|
|
2023-02-13 16:58:06 +00:00
|
|
|
- name: Setup Hugo
|
|
|
|
uses: peaceiris/actions-hugo@v2
|
|
|
|
with:
|
2023-03-06 11:06:22 +00:00
|
|
|
hugo-version: '0.80.0'
|
2023-07-14 17:35:40 +00:00
|
|
|
extended: true
|
2023-02-13 16:58:06 +00:00
|
|
|
|
2023-07-14 17:15:30 +00:00
|
|
|
- name: Generate documentation translations
|
|
|
|
run: bash ./doc-translate.sh
|
|
|
|
|
2023-02-13 16:58:06 +00:00
|
|
|
- name: Build
|
|
|
|
run: hugo --minify --baseURL='https://johnxlivingston.github.io/peertube-plugin-livechat' -s support/documentation
|
|
|
|
|
|
|
|
- name: Deploy
|
|
|
|
uses: peaceiris/actions-gh-pages@v3
|
2023-03-07 13:14:19 +00:00
|
|
|
if: github.ref == 'refs/heads/documentation'
|
2023-02-13 16:58:06 +00:00
|
|
|
with:
|
|
|
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
publish_dir: ./support/documentation/public
|