Fix installationdescription not working (#1525) #115
This file contains hidden or 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: Publish docs via GitHub Pages | |
| on: | |
| push: | |
| branches: | |
| - dev | |
| paths: | |
| - 'docs/**' | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| name: Deploy docs | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout photobooth | |
| uses: actions/checkout@v6 | |
| with: | |
| submodules: true | |
| token: ${{ secrets.PAGES }} | |
| - name: Deploy and publish docs | |
| uses: andi34/mkdocs-deploy-gh-pages@nomaterial | |
| env: | |
| PERSONAL_TOKEN: ${{ secrets.PAGES }} | |
| GITHUB_ORIGIN: PhotoboothProject/PhotoboothProject.github.io | |
| CONFIG_FILE: mkdocs_remote.yml | |
| EXTRA_PACKAGES: build-base | |
| REQUIREMENTS: requirements.txt |