2021-10-06 11:18:27 +02:00
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- master
|
|
|
|
paths:
|
2021-10-10 20:17:49 +02:00
|
|
|
- .github/workflows/docs-update-install.yml
|
2021-10-06 11:18:27 +02:00
|
|
|
- docs/installation/*
|
|
|
|
|
|
|
|
# Allow to call the workflow manually
|
|
|
|
workflow_dispatch:
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
doc:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- uses: actions/setup-python@v2
|
|
|
|
with:
|
|
|
|
python-version: 3.9
|
|
|
|
- run: make install
|
|
|
|
- run: make doc-update-install
|
|
|
|
- uses: Automattic/action-commit-to-branch@master
|
|
|
|
with:
|
|
|
|
branch: master
|
2021-10-10 20:25:03 +02:00
|
|
|
commit_message: |
|
|
|
|
Auto-update install docs
|
|
|
|
|
|
|
|
Via .github/workflows/docs-update-install.yml
|
|
|
|
|
2021-10-06 11:18:27 +02:00
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|