-
-
Notifications
You must be signed in to change notification settings - Fork 13
34 lines (31 loc) · 1.02 KB
/
python-update-docs.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# This workflow will install Python dependencies, executes generate_style_list script and update docs during workkflow
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: Update docs
on:
workflow_dispatch:
push:
branches:
- main
jobs:
docs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.11']
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install --upgrade --upgrade-strategy eager --no-cache-dir .[docs]
- name: execute script
run: |
python ./docs/source/generate_style_list.py
- uses: EndBug/add-and-commit@v9
with:
default_author: github_actions
message: 'docs: update style list'