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-14 17:15:30 +00:00
|
|
|
- name: Install po4a
|
|
|
|
run: sudo apt update && sudo apt install po4a -y
|
|
|
|
|
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
|