Use more accurate icon for EGS Open Install Location #76
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: github-pages-deploy | |
on: | |
push: | |
paths: | |
- docs/** | |
- overrides/** | |
- .github/github-pages-deploy.yml | |
- mkdocs.yml | |
branches: | |
- master | |
env: | |
CI: True | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
env: | |
MKDOCS_GIT_COMMITTERS_APIKEY: ${{ secrets.GITHUB_TOKEN }} | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: 3.x | |
- run: git config user.name 'github-actions[bot]' && git config user.email 'github-actions[bot]@users.noreply.github.com' | |
- run: pip install mkdocs-material mkdocs-glightbox mkdocs-git-committers-plugin-2 mkdocs-git-revision-date-localized-plugin | |
- run: mkdocs gh-deploy --force |