mirror of
https://github.com/AtsushiSakai/PythonRobotics.git
synced 2026-01-14 16:57:58 -05:00
30 lines
773 B
YAML
30 lines
773 B
YAML
name: Pages
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Setup python
|
|
uses: actions/setup-python@v3
|
|
- name: Checkout
|
|
uses: actions/checkout@master
|
|
with:
|
|
fetch-depth: 0 # otherwise, you will fail to push refs to dest repo
|
|
- name: Install dependencies
|
|
run: |
|
|
python --version
|
|
python -m pip install --upgrade pip
|
|
python -m pip install -r requirements/requirements.txt
|
|
- name: Build and Commit
|
|
uses: sphinx-notes/pages@v2
|
|
with:
|
|
requirements_path: ./docs/doc_requirements.txt
|
|
- name: Push changes
|
|
uses: ad-m/github-push-action@master
|
|
with:
|
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
|
branch: gh-pages
|