Merge branch 'master' of https://github.com/seto77/ReciPro #121
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
| # 260525Ch: Build MkDocs Material documentation and deploy it to GitHub Pages. | |
| name: Deploy documentation to GitHub Pages | |
| on: | |
| push: | |
| branches: | |
| - master | |
| paths: | |
| - docs/** | |
| - .github/workflows/pages.yml | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| pages: write | |
| id-token: write | |
| # 260525Ch: Validate GitHub JavaScript actions under the upcoming Node 24 runtime. | |
| env: | |
| FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: "true" | |
| concurrency: | |
| group: pages | |
| cancel-in-progress: false | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Set up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.12" | |
| - name: Install documentation dependencies | |
| run: python -m pip install -r docs/requirements.txt | |
| - name: Build documentation | |
| run: mkdocs build -f docs/mkdocs.yml --strict | |
| - name: Configure Pages | |
| uses: actions/configure-pages@v5 | |
| # 260726Cl: リポジトリ設定で Pages が未有効だと "Get Pages site failed / Not Found" で | |
| # ビルドごと落ちる (PressureCalculator の初回 push で実際に発生)。enablement: true なら | |
| # ワークフロー自身が Actions ビルドとして有効化するので、設定を手で入れ忘れても通る。 | |
| with: | |
| enablement: true | |
| - name: Upload artifact | |
| uses: actions/upload-pages-artifact@v3 | |
| with: | |
| path: docs/site | |
| deploy: | |
| environment: | |
| name: github-pages | |
| url: ${{ steps.deployment.outputs.page_url }} | |
| runs-on: ubuntu-latest | |
| needs: build | |
| steps: | |
| - name: Deploy to GitHub Pages | |
| id: deployment | |
| uses: actions/deploy-pages@v4 | |