Skip to content

Merge pull request #414 from bsv-blockchain/TOB-24 #83

Merge pull request #414 from bsv-blockchain/TOB-24

Merge pull request #414 from bsv-blockchain/TOB-24 #83

Workflow file for this run

name: Deploy Documentation
on:
push:
branches: [master]
workflow_dispatch:
permissions:
contents: write
jobs:
deploy:
# Add repository check to ensure it only runs on main repo
if: github.repository == 'bsv-blockchain/ts-sdk'
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: 3.x
- name: Install MkDocs
run: pip install mkdocs-material mkdocs-minify-plugin
- name: Deploy to GitHub Pages
run: mkdocs gh-deploy --force