docs: Mention that root_numpy and root_pandas are deprecated (#95) #46
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 Deploy Book | |
| on: | |
| workflow_dispatch: | |
| pull_request: | |
| push: | |
| branches: | |
| - main | |
| env: | |
| BASE_URL: /${{ github.event.repository.name }} | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| build-book: | |
| name: Build Book | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 30 | |
| # Required for miniconda to activate conda | |
| defaults: | |
| run: | |
| shell: bash -l {0} | |
| steps: | |
| - name: Check out repo | |
| uses: actions/checkout@v6 | |
| - name: Get conda | |
| uses: conda-incubator/setup-miniconda@v4 | |
| with: | |
| auto-update-conda: true | |
| python-version: "3.12" | |
| miniforge-version: latest | |
| use-mamba: true | |
| environment-file: environment.yml | |
| activate-environment: skhep-tutorial | |
| conda-remove-defaults: true | |
| - name: Build the book | |
| run: | | |
| pip install --pre "jupyter-book==2.*" | |
| jupyter book build --execute --strict --html --ci | |
| - name: Upload artifact | |
| uses: actions/upload-pages-artifact@v5 | |
| with: | |
| path: "_build/html" | |
| deploy-book: | |
| name: Deploy Book | |
| runs-on: ubuntu-latest | |
| needs: build-book | |
| if: github.event_name == 'push' | |
| permissions: | |
| pages: write | |
| id-token: write | |
| environment: | |
| name: github-pages | |
| url: ${{ steps.deployment.outputs.page_url }} | |
| steps: | |
| - name: Deploy to GitHub Pages | |
| id: deployment | |
| uses: actions/deploy-pages@v5 |