Update rubocop-md requirement from 1.2.3 to 1.2.4 (#469) #83
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: Deploy | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
docs: | |
name: "Docs" | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: "3.10" | |
cache: "pip" | |
- run: pip install -r requirements.txt | |
- run: cat README.md >> docs/index.md | |
- run: cp -R readme_images docs/ | |
- run: git config --local user.name 'github-actions[bot]' | |
- run: git config --local user.email 'github-actions[bot]@users.noreply.github.com' | |
- run: mkdocs gh-deploy -m 'Deployed {sha} with mkdocs {version} [ci skip]' |