Skip to content

ignoring more things that could cause issues #14

ignoring more things that could cause issues

ignoring more things that could cause issues #14

Workflow file for this run

# Workflow to trigger ReadTheDocs build on every push to main branch
name: rtd
on:
push:
branches:
- main
jobs:
rtd:
runs-on: ubuntu-latest
steps:
- name: Trigger RTDs build
run: |
curl \
-X POST "https://readthedocs.org/api/v3/projects/bt-tools/versions/latest/builds/" \
-H "Authorization: Token ${{ secrets.RTD_API_TOKEN }}"