Skip to content

Commit

Permalink
JWT docs overhaul (#1001)
Browse files Browse the repository at this point in the history
Update JWT docs for v5
  • Loading branch information
ptoffy authored Oct 3, 2024
1 parent 4b0e25d commit 15f64e2
Show file tree
Hide file tree
Showing 3 changed files with 182 additions and 171 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,12 @@ jobs:
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Create virtual environment
run: python3 -m venv venv
- name: Install dependencies
run: pip install -r requirements.txt
run: venv/bin/pip install -r requirements.txt
- name: Build documentation
run: mkdocs build
run: venv/bin/mkdocs build
- name: Setup cloudformation linter
uses: ScottBrenner/cfn-lint-action@v2
- name: Run cloudformation lint
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,13 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v4

- name: Create virtual environment
run: python3 -m venv venv
- name: Install dependencies
run: pip install -r requirements.txt
run: venv/bin/pip install -r requirements.txt
- name: Build the website
run: |
mkdocs build
venv/bin/mkdocs build
swift fixSearchIndex.swift
cp googlefc012e5d94cfa05f.html site/googlefc012e5d94cfa05f.html
swift setUpRedirects.swift
Expand Down
Loading

0 comments on commit 15f64e2

Please sign in to comment.