Skip to content

Commit ea05d22

Browse files
authored
Merge pull request #4 from srosam/gh-pages-deploy
Add GitHub Pages deploy for the slide deck; drop committed junk
2 parents b9d1841 + 6a08723 commit ea05d22

7 files changed

Lines changed: 55 additions & 42 deletions

File tree

.DS_Store

-20 KB
Binary file not shown.

.claude/current-launch.txt

Lines changed: 0 additions & 1 deletion
This file was deleted.

.github/workflows/pages.yml

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
name: Deploy webinar presentation to Pages
2+
3+
# Publishes ONLY webinar-presentation/ as the GitHub Pages site, so the public
4+
# URL serves the slide deck and not the cohort-runs eval artifacts or module data.
5+
6+
on:
7+
push:
8+
branches: [main]
9+
paths:
10+
- 'webinar-presentation/**'
11+
- '.github/workflows/pages.yml'
12+
workflow_dispatch:
13+
14+
permissions:
15+
contents: read
16+
pages: write
17+
id-token: write
18+
19+
# Allow one concurrent deployment; newer pushes supersede in-progress runs.
20+
concurrency:
21+
group: pages
22+
cancel-in-progress: true
23+
24+
jobs:
25+
deploy:
26+
runs-on: ubuntu-latest
27+
environment:
28+
name: github-pages
29+
url: ${{ steps.deployment.outputs.page_url }}
30+
steps:
31+
- name: Checkout
32+
uses: actions/checkout@v4
33+
34+
- name: Stage presentation as site root
35+
run: |
36+
mkdir -p _site
37+
cp -r webinar-presentation/. _site/
38+
# Make the bare Pages URL land on the slide index (relative links are
39+
# preserved because index.html sits at the same level as the deck).
40+
cp _site/presentation-index.html _site/index.html
41+
42+
- name: Configure Pages
43+
uses: actions/configure-pages@v5
44+
45+
- name: Upload artifact
46+
uses: actions/upload-pages-artifact@v3
47+
with:
48+
path: _site
49+
50+
- name: Deploy to GitHub Pages
51+
id: deployment
52+
uses: actions/deploy-pages@v4

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,3 +19,6 @@ __pycache__/
1919
.venv/
2020
.claude/main-session-unlock
2121
.claude/blocked-attempts.log
22+
# Transient per-run launch state — machine-specific, not meaningful in the repo.
23+
.claude/current-launch.txt
24+
cohort-runs/.launch-config.json

code/.DS_Store

-10 KB
Binary file not shown.

code/_schema/.DS_Store

-6 KB
Binary file not shown.

cohort-runs/.launch-config.json

Lines changed: 0 additions & 41 deletions
This file was deleted.

0 commit comments

Comments
 (0)