Merge pull request #57 from kartoza/feature/add-resend #55
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: 📖 Build MKDocs And Publish To Github Pages.yml | |
on: | |
push: | |
branches: | |
- main | |
# Paths can be used to only trigger actions when you have edited certain files, such as a file within the /docs directory | |
paths: | |
- ".github/workflows/BuildMKDocsAndPublishToGithubPages.yml" | |
- "**.md" | |
- "**.py" | |
- "assets/**" | |
# Allow manually running in the actions tab | |
workflow_dispatch: | |
jobs: | |
build: | |
name: Deploy docs | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install dependencies | |
#uses: BSFishy/pip-action@v1 | |
uses: timlinux/pip-action@v1 | |
with: | |
packages: | | |
mkdocs-material | |
qrcode | |
- name: Checkout main from github | |
uses: actions/checkout@v3 | |
- name: Create Mkdocs Config 🚀 | |
working-directory: ./docs | |
run: ./create-mkdocs-html-config.sh | |
- name: Deploy docs to github pages | |
# This is where we get the material theme from | |
uses: timlinux/mkdocs-deploy-gh-pages@master | |
# Wrong | |
#uses: timlinux/QGISAnimationWorkbench@main | |
env: | |
# Read this carefully: | |
# https://github.com/marketplace/actions/deploy-mkdocs#building-with-github_token | |
# The token is automatically generated by the GH Action | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
CONFIG_FILE: docs/mkdocs.yml | |
REQUIREMENTS: requirements.txt |