mirror of
https://github.com/ManimCommunity/manim.git
synced 2026-06-22 10:01:47 +00:00
Introduce new workflow creating a downloadable version of the documentation (#3417)
* Revert "rtd: enable htmlzip build (#3355)"
This reverts commit 571f79be2c.
* use python3.11 to build docs
* upgrade python version used in release publish workflow
* new workflow for building downloadable docs
* change event trigger for testing
* sudo apt
* rename release job; build html in poetry env
* set GITHUB_PATH instead of PATH
* introduce additional step
* use correct binary path
* forgot microtype
* fonts-roboto + actually compress files correctly
* fix asset path
* Update .github/workflows/release-publish-documentation.yml
Co-authored-by: Naveen M K <naveen521kk@gmail.com>
* pull_request -> workflow_dispatch
* Update .github/workflows/release-publish-documentation.yml
---------
Co-authored-by: Naveen M K <naveen521kk@gmail.com>
This commit is contained in:
parent
76b4061aa6
commit
5193e1cfd1
3 changed files with 86 additions and 6 deletions
4
.github/workflows/python-publish.yml
vendored
4
.github/workflows/python-publish.yml
vendored
|
|
@ -10,10 +10,10 @@ jobs:
|
|||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
|
||||
- name: Set up Python 3.8
|
||||
- name: Set up Python 3.11
|
||||
uses: actions/setup-python@v4
|
||||
with:
|
||||
python-version: 3.9
|
||||
python-version: 3.11
|
||||
|
||||
- name: Install dependencies
|
||||
run: python -m pip install --upgrade poetry
|
||||
|
|
|
|||
84
.github/workflows/release-publish-documentation.yml
vendored
Normal file
84
.github/workflows/release-publish-documentation.yml
vendored
Normal file
|
|
@ -0,0 +1,84 @@
|
|||
name: Publish downloadable documentation
|
||||
|
||||
on:
|
||||
release:
|
||||
types: [released]
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
build-and-publish-htmldocs:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
|
||||
- name: Set up Python 3.11
|
||||
uses: actions/setup-python@v4
|
||||
with:
|
||||
python-version: 3.11
|
||||
|
||||
- name: Install system dependencies
|
||||
run: |
|
||||
sudo apt update && sudo apt install -y \
|
||||
pkg-config libcairo-dev libpango1.0-dev ffmpeg wget fonts-roboto
|
||||
wget -qO- "https://yihui.org/tinytex/install-bin-unix.sh" | sh
|
||||
echo ${HOME}/.TinyTeX/bin/x86_64-linux >> $GITHUB_PATH
|
||||
|
||||
- name: Install LaTeX and Python dependencies
|
||||
run: |
|
||||
tlmgr install \
|
||||
babel-english ctex doublestroke dvisvgm frcursive fundus-calligra jknapltx \
|
||||
mathastext microtype physics preview ragged2e relsize rsfs setspace standalone \
|
||||
wasy wasysym
|
||||
python -m pip install --upgrade poetry
|
||||
poetry install
|
||||
|
||||
- name: Build and package documentation
|
||||
run: |
|
||||
cd docs/
|
||||
poetry run make html
|
||||
cd build/html/
|
||||
tar -czvf ../html-docs.tar.gz *
|
||||
|
||||
- name: Store artifacts
|
||||
uses: actions/upload-artifact@v3
|
||||
with:
|
||||
path: ${{ github.workspace }}/manim/docs/build/html-docs.tar.gz
|
||||
name: html-docs.tar.gz
|
||||
|
||||
- name: Install Dependency
|
||||
run: pip install requests
|
||||
|
||||
- name: Get Upload URL
|
||||
if: github.event == 'release'
|
||||
id: create_release
|
||||
shell: python
|
||||
env:
|
||||
access_token: ${{ secrets.GITHUB_TOKEN }}
|
||||
tag_act: ${{ github.ref }}
|
||||
run: |
|
||||
import requests
|
||||
import os
|
||||
ref_tag = os.getenv('tag_act').split('/')[-1]
|
||||
access_token = os.getenv('access_token')
|
||||
headers = {
|
||||
"Accept":"application/vnd.github.v3+json",
|
||||
"Authorization": f"token {access_token}"
|
||||
}
|
||||
url = f"https://api.github.com/repos/ManimCommunity/manim/releases/tags/{ref_tag}"
|
||||
c = requests.get(url,headers=headers)
|
||||
upload_url=c.json()['upload_url']
|
||||
with open(os.getenv('GITHUB_OUTPUT'), 'w') as f:
|
||||
print(f"upload_url={upload_url}", file=f)
|
||||
print(f"tag_name={ref_tag[1:]}", file=f)
|
||||
|
||||
- name: Upload Release Asset
|
||||
if: github.event == 'release'
|
||||
id: upload-release
|
||||
uses: actions/upload-release-asset@v1
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
with:
|
||||
upload_url: ${{ steps.create_release.outputs.upload_url }}
|
||||
asset_path: ${{ github.workspace }}/manim/docs/build/html-docs.tar.gz
|
||||
asset_name: manim-htmldocs-${{ steps.create_release.outputs.tag_name }}.tar.gz
|
||||
asset_content_type: application/gzip
|
||||
|
|
@ -1,8 +1,4 @@
|
|||
version: 2
|
||||
|
||||
formats:
|
||||
- htmlzip
|
||||
|
||||
build:
|
||||
os: ubuntu-22.04
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue