Skip to content

Pull Request Docs Check #21

Pull Request Docs Check

Pull Request Docs Check #21

Workflow file for this run

name: "Pull Request Docs Check"
on:
- pull_request
- workflow_dispatch
jobs:
docs:
runs-on: ubuntu-latest
steps:
- name: Commit documentation changes
run: |
git clone https://github.com/kennylajara/WML.git --branch gh-pages --single-branch gh-pages
pwd && ls && cp -r docs/build/html/* gh-pages/
cd gh-pages
git config --local user.email "[email protected]"
git config --local user.name "GitHub Action"
git add .
git commit -m "Update documentation" -a || true
# The above command will fail if no changes were present, so we ignore
# the return code.
- name: Push changes
uses: ad-m/github-push-action@master
with:
branch: gh-pages
directory: gh-pages
github_token: ${{ secrets.GITHUB_TOKEN }}