-
Notifications
You must be signed in to change notification settings - Fork 90
39 lines (39 loc) · 1.16 KB
/
pages.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# see https://github.com/actions/starter-workflows/blob/main/pages/jekyll.yml
name: Build & Publish site
on:
push:
workflow_dispatch:
permissions:
# allow GITHUB_TOKEN to deploy to GitHub Pages
contents: read
pages: write
id-token: write
concurrency: {group: "pages", cancel-in-progress: true}
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with: {python-version: '3.x'}
- id: pages
uses: actions/configure-pages@v3
- run: pip install -r requirements.txt
- name: jupyter-book build
run: |
sed -ri 's#^(\s*baseurl:).*#\1 ${{ steps.pages.outputs.base_url }}#' _config.yml
# https://jupyterbook.org/en/stable/reference/cli.html
touch references.bib # TODO: remove
jupyter-book build --warningiserror --nitpick .
- uses: actions/upload-pages-artifact@v2
with: {path: _build/html}
deploy:
if: github.ref == 'refs/heads/main'
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: build
steps:
- id: deployment
uses: actions/deploy-pages@v2