Merge pull request #1 from hsf-training/pre-commit-ci-update-config #5
This file contains 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@v4 | |
- name: Get conda | |
uses: conda-incubator/setup-miniconda@v3 | |
with: | |
auto-update-conda: true | |
python-version: "3.12" | |
miniforge-version: latest | |
use-mamba: true | |
environment-file: environment.yml | |
activate-environment: skhep-tutorial | |
- name: Build the book | |
run: | | |
jupyter-book build scikit_hep_tutorial | |
- name: Upload artifact | |
uses: actions/upload-pages-artifact@v3 | |
with: | |
path: "scikit_hep_tutorial/_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@v4 |