Skip to content

Commit 2e047d9

Browse files
danbriclaude
andauthored
Claude/study repo notes 01 k egxrt mp xk73 u6 u6ie jr qu (#4634)
* Add Claude Code study notes for schemaorg repository Comprehensive documentation covering: - Repository structure and organization - Data layer (schemas, examples, extensions) - Software architecture (Python build system) - Template system (Jinja2) - Build process and CI/CD - Testing infrastructure - Version history and release process * Add GitHub Pages deployment workflow Minimal workflow to automatically deploy docs/ to github.io on push to main. Uses GitHub's official actions for Pages deployment. * Add index.html to test GitHub Pages deployment --------- Co-authored-by: Claude <noreply@anthropic.com>
1 parent 729137b commit 2e047d9

File tree

3 files changed

+416
-0
lines changed

3 files changed

+416
-0
lines changed

.github/workflows/pages.yml

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
# Simple workflow for deploying static content to GitHub Pages
2+
name: Deploy to GitHub Pages
3+
4+
on:
5+
# Runs on pushes to main branch
6+
push:
7+
branches: ["main"]
8+
# Allows manual trigger
9+
workflow_dispatch:
10+
11+
# Sets permissions for GITHUB_TOKEN to deploy to Pages
12+
permissions:
13+
contents: read
14+
pages: write
15+
id-token: write
16+
17+
# Allow only one concurrent deployment
18+
concurrency:
19+
group: "pages"
20+
cancel-in-progress: false
21+
22+
jobs:
23+
deploy:
24+
environment:
25+
name: github-pages
26+
url: ${{ steps.deployment.outputs.page_url }}
27+
runs-on: ubuntu-latest
28+
steps:
29+
- name: Checkout
30+
uses: actions/checkout@v4
31+
- name: Setup Pages
32+
uses: actions/configure-pages@v5
33+
- name: Upload artifact
34+
uses: actions/upload-pages-artifact@v3
35+
with:
36+
path: 'docs'
37+
- name: Deploy to GitHub Pages
38+
id: deployment
39+
uses: actions/deploy-pages@v4

0 commit comments

Comments
 (0)