Skip to content

Documentation

Documentation #1

Workflow file for this run

name: Documentation
on:
push:
tags:
- 'v*'
- '*.*.*'
jobs:
trigger-docs:
runs-on: ubuntu-latest
steps:
- name: Trigger Read the Docs Build
run: |
curl -X POST \
-H "Content-Type: application/json" \
-d "{\"token\": \"${{ secrets.RTD_WEBHOOK_TOKEN }}\"}" \
${{ secrets.RTD_WEBHOOK_URL }}
env:
CURL_VERBOSE: false