Skip to content

docs

docs #8

Workflow file for this run

name: docs
on:
workflow_dispatch:
schedule:
- cron: '20 16 * * *'
push:
branches:
- master
env:
DOCS_FOR: rp2350
jobs:
build:
if: github.repository_owner == 'SoCXin'
name: Build
runs-on: ubuntu-latest
steps:
- name: Check out
uses: actions/checkout@v4
with:
submodules: "recursive"
fetch-depth: 1
- name: Checkout Docs
uses: actions/checkout@v4
with:
repository: SoCXin/docs
token: ${{ secrets.SOC_XIN_TOCKEN }}
ref: ${{ env.DOCS_FOR }}
fetch-depth: 1
path: www
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Install dependencies
working-directory: www
run: |
python -m pip install --upgrade pip
pip install tox
- name: Build docs
working-directory: www
run: |
tox -e docs
- name: Preserve Docs
if: ${{ github.event_name == 'push' }}
run: |
tar -czvf docs.tar.gz -C www/_build html rtdpage
tree -L 2
- name: Save artifact
if: ${{ github.event_name == 'push' }}
uses: actions/upload-artifact@v4
with:
name: docs
path: ./docs.tar.gz
deploy:
name: Deploy
needs: build
runs-on: ubuntu-latest
env:
DOCS_REPO: SoCXin/web
DOCS_DIR: docs
LATEST_DOCS_DIR: latest
RELEASE_BUILD: ${{ startsWith(github.ref, 'refs/tags/v') }}
if: ${{ github.event_name == 'push' }}
steps:
- name: Download artifact
uses: actions/download-artifact@v4
with:
name: docs
- name: Unpack artifact
run: |
mkdir ./${{ env.LATEST_DOCS_DIR }}
tar -xzf ./docs.tar.gz -C ./${{ env.LATEST_DOCS_DIR }}
- name: Delete Artifact
uses: geekyeggo/delete-artifact@v2
with:
name: docs
- name: Checkout latest Docs
continue-on-error: true
uses: actions/checkout@v4
with:
repository: ${{ env.DOCS_REPO }}
path: ${{ env.DOCS_DIR }}
ref: gh-pages
- name: Synchronize Docs
run: |
rm -rf ${{ env.DOCS_DIR }}/.git
rm -rf ${{ env.DOCS_DIR }}/${{ env.DOCS_FOR }}/
mkdir -p ${{ env.DOCS_DIR }}/${{ env.DOCS_FOR }}/
cp -rf ${{ env.LATEST_DOCS_DIR }}/html/* ${{ env.DOCS_DIR }}/${{ env.DOCS_FOR }}/
if [[ ${{ env.RELEASE_BUILD }} == false ]]; then
rm -rf ${{ env.DOCS_DIR }}/${{ env.DOCS_FOR }}/page
mkdir -p ${{ env.DOCS_DIR }}/${{ env.DOCS_FOR }}/page
cp -rf ${{ env.LATEST_DOCS_DIR }}/rtdpage/* ${{ env.DOCS_DIR }}/${{ env.DOCS_FOR }}/page
fi
- name: Validate Docs
run: |
if [ -z "$(ls -A ${{ env.DOCS_DIR }})" ]; then
echo "Docs folder is empty. Aborting!"
exit 1
fi
- name: Deploy to Github Pages
uses: peaceiris/actions-gh-pages@v4
with:
personal_token: ${{ secrets.SOC_XIN_TOCKEN }}
external_repository: ${{ env.DOCS_REPO }}
publish_dir: ./${{ env.DOCS_DIR }}
commit_message: Sync Docs