Hotfix: getJoinedDomains and getInstalledPrinters not working #136
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: Build and publish documentation | |
| on: | |
| push: | |
| branches: | |
| - master | |
| paths: | |
| - 'usr/lib/python3/dist-packages/**' | |
| pull_request: | |
| paths: | |
| - 'usr/lib/python3/dist-packages/**' | |
| jobs: | |
| deploy: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - uses: actions/checkout@v2 | |
| with: | |
| submodules: true # Fetch Hugo themes (true OR recursive) | |
| fetch-depth: 0 # Fetch all history for .GitInfo and .Lastmod | |
| - name: Setup Sphinx | |
| run: | | |
| sudo apt update | |
| sudo apt install -y python3-pip python3-ldap build-essential | |
| pip install sphinx_rtd_theme | |
| - name: Build | |
| run: | | |
| make docs | |
| - name: Deploy | |
| uses: peaceiris/actions-gh-pages@v3 | |
| if: ${{ github.ref == 'refs/heads/master' }} | |
| with: | |
| github_token: ${{ secrets.GITHUB_TOKEN }} | |
| publish_dir: ./public |