Skip to content

feat(PR21): XRPL Stablecoin Profile expansion (#30) #13

feat(PR21): XRPL Stablecoin Profile expansion (#30)

feat(PR21): XRPL Stablecoin Profile expansion (#30) #13

Workflow file for this run

# PR19 — Deploy docs to GitHub Pages
# Deploys to gh-pages branch. Enable Pages: Settings → Pages → Source: Deploy from a branch → gh-pages
name: Deploy Docs
on:
push:
branches: [main]
workflow_dispatch:
permissions:
contents: write
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Cache pip
uses: actions/cache@v4
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('docs-requirements.txt') }}
- name: Install MkDocs
run: pip install -r docs-requirements.txt
- name: Build site
run: mkdocs build --strict
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./site