Skip to content

fucking main and master !!! #1

fucking main and master !!!

fucking main and master !!! #1

# use custom logic to compile and github-pages deployment
# just run script/compile_all_tutorial.py and script/render_all.py and the compiled files will be in the tutorial/build directory
name: Compile Articles
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.8
uses: actions/setup-python@v2
with:
python-version: 3.12
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Compile articles
run: python script/compile_all_tutorial.py
- name: Render articles
run: python script/render_all.py
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./tutorial/build