This repository was archived by the owner on Mar 4, 2026. It is now read-only.
File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ name : Deploy MkDocs to GitHub Pages
2+
3+ on :
4+ push :
5+ branches : ["main"]
6+
7+ permissions :
8+ contents : read
9+ pages : write
10+ id-token : write
11+
12+ concurrency :
13+ group : " pages"
14+ cancel-in-progress : true
15+
16+ jobs :
17+ deploy :
18+ runs-on : ubuntu-latest
19+ steps :
20+ - uses : actions/checkout@v4
21+
22+ - uses : actions/setup-python@v5
23+ with :
24+ python-version : " 3.11"
25+
26+ - run : pip install mkdocs-material
27+
28+ - name : Build
29+ run : mkdocs build
30+
31+ - name : Upload Pages artifact
32+ uses : actions/upload-pages-artifact@v3
33+ with :
34+ path : site
35+
36+ - name : Deploy to GitHub Pages
37+ id : deployment
38+ uses : actions/deploy-pages@v4
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1+ ## TierTests Public API
2+
3+ This is a rushed page to document the use of our public-facing API.
Original file line number Diff line number Diff line change 1+ site_name : TierTests Public API
2+ nav :
3+ - Home : index.md
4+ - Authentication : authentication.md
5+ - Rate Limits : rate-limits.md
6+ - Endpoints :
7+ - Tiers : endpoints/tiers.md
8+ - Users : endpoints/users.md
You can’t perform that action at this time.
0 commit comments