-
Notifications
You must be signed in to change notification settings - Fork 2
68 lines (61 loc) · 1.63 KB
/
ci-cd.yml
File metadata and controls
68 lines (61 loc) · 1.63 KB
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
name: CI/CD
on: [push]
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Install uv
uses: astral-sh/setup-uv@v7
with:
python-version: "3.13"
enable-cache: true
cache-dependency-glob: "uv.lock"
- name: Install dependencies
run: uv sync --all-extras --dev
- name: Build slides
run: |
uv run jupyter nbconvert \
--to=slides \
--output-dir='' \
--output='slides' \
--SlidesExporter.file_extension=.html \
--SlidesExporter.reveal_theme=white \
content/events/*/slides.ipynb
- name: Build static site
run: |
uv run mkdocs build --strict
- name: Upload build artifacts
uses: actions/upload-artifact@v7
with:
name: build
path: dist
deploy:
name: Deploy
runs-on: ubuntu-latest
needs: build
if: contains(github.ref, 'main')
permissions:
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Download build artifacts
uses: actions/download-artifact@v8
with:
name: build
path: dist
- name: Setup Pages
uses: actions/configure-pages@v5
- name: Upload artifact
uses: actions/upload-pages-artifact@v4
with:
path: dist
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4