Skip to content

Commit 4d4e4c4

Browse files
committed
Initial documentation for the Twitch Events api endpoint
Add post requests for twitch-events Adjust order of arguments to make it easier to read Create heartbeat endpoint documentation Create streamers endpoint documentation Document the twitch scopes endpoint Document the helix scopes endpoint Minor tweaks fix doc based on info from issue fix doc based on info from issue Update mkdocs.yml to point to the new doc and remove the bad doc Build mkdocs using github actions fix ubuntu version fix runs-on tag rename job Remove my branch from branch list Add trailing new line Add trailing new line Add json highlighting for languages Minor adjustments to the docs add env_options.md to mkdocs page
1 parent 46fd815 commit 4d4e4c4

3 files changed

Lines changed: 431 additions & 2 deletions

File tree

.github/workflows/docs.yml

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
---
2+
name: docs
3+
4+
on:
5+
push:
6+
branches:
7+
- main
8+
9+
# Allows you to run this workflow manually from the Actions tab
10+
workflow_dispatch:
11+
12+
jobs:
13+
generate-docs:
14+
runs-on: ubuntu-latest
15+
steps:
16+
- name: Checkout main
17+
uses: actions/checkout@v2
18+
19+
- name: Set up Python 3.7
20+
uses: actions/setup-python@v2
21+
with:
22+
python-version: '3.x'
23+
24+
- name: Install mkdocs
25+
run: pip install mkdocs
26+
27+
- name: Generate docs
28+
run: mkdocs build
29+
30+
- name: Store built docs
31+
uses: actions/upload-artifact@v2
32+
with:
33+
name: mkdocs
34+
path: site

0 commit comments

Comments
 (0)