deactivating all workflows #1
Workflow file for this run
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 gh-pages docs | |
| # on: | |
| # push: | |
| # branches: | |
| # - main | |
| # workflow_dispatch: | |
| # jobs: | |
| # build: | |
| # name: Build | |
| # runs-on: ubuntu-latest | |
| # strategy: | |
| # matrix: | |
| # python-version: [3.9] | |
| # steps: | |
| # - name: checkout | |
| # uses: actions/checkout@v3 | |
| # - name: Set up Python ${{ matrix.python-version }} | |
| # uses: actions/setup-python@v3 | |
| # with: | |
| # python-version: ${{ matrix.python-version }} | |
| # - name: install and build | |
| # run: | | |
| # python -m pip install --upgrade pip setuptools | |
| # pip install .[docs] | |
| # pip install markdown_refdocs mkdocs mkdocs-material | |
| # markdown_refdocs pori_python -o docs/reference --link | |
| # mkdocs build | |
| # - name: Deploy | |
| # uses: peaceiris/actions-gh-pages@v3 | |
| # with: | |
| # github_token: ${{ secrets.GITHUB_TOKEN }} | |
| # publish_dir: ./build-docs |