Update libmwcapture.py #14
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: pymagewell-docs-pages | |
on: | |
push: | |
tags: | |
- '*' | |
jobs: | |
build-docs: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: Set up Python 3.10 | |
uses: actions/setup-python@v2 | |
with: | |
python-version: "3.10" | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
python -m pip install .[doc] | |
- name: Create doc pages and commit to docs branch | |
run: | | |
git config --local user.name "crnbaker" | |
git config --local user.email "[email protected]" | |
git fetch | |
git status | |
git checkout ${{ github.ref_name }} | |
git branch ${{ github.ref_name }}-branch | |
git checkout docs | |
git status | |
git rebase ${{ github.ref_name }}-branch | |
export PYMAGEWELL_VERSION=${{ github.ref_name }} | |
source generate_docs.sh | |
git add . | |
git commit --allow-empty -m 'Automatic documentation update ${{ github.ref_name }}' | |
- name: Push changes | |
uses: ad-m/github-push-action@master | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
branch: docs | |
force: true | |