Skip to content

docs: update Python README and remove obsolete memory safety guide #1

docs: update Python README and remove obsolete memory safety guide

docs: update Python README and remove obsolete memory safety guide #1

Workflow file for this run

name: Trigger Docs Build
on:
push:
branches:
- main
tags:
- 'v*.*.*'
paths:
- 'docs/**'
- 'python/**'
- '.readthedocs.yaml'
- '.github/workflows/docs.yml'
workflow_dispatch:
jobs:
trigger-rtd:
runs-on: ubuntu-latest
steps:
- name: Trigger Read the Docs Webhook
if: env.RTD_WEBHOOK_URL != ''
env:
RTD_WEBHOOK_URL: ${{ secrets.RTD_WEBHOOK_URL }}
run: |
REF_NAME="${{ github.ref_name }}"
if [ "${{ github.ref_type }}" = "tag" ]; then
echo "Triggering RTD build for tag: ${REF_NAME}"
curl -sS -X POST -d "branches=${REF_NAME}" "${RTD_WEBHOOK_URL}"
else
echo "Triggering RTD build for branch: ${REF_NAME}"
curl -sS -X POST -d "branches=${REF_NAME}" "${RTD_WEBHOOK_URL}"
fi