Add remote and Jupyter data sources and connection UI #10
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Read the Docs Trigger | |
| on: | |
| push: | |
| branches: ["main"] | |
| tags: | |
| - "v*" | |
| workflow_dispatch: | |
| jobs: | |
| trigger: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Trigger Read the Docs build | |
| env: | |
| RTD_TOKEN: ${{ secrets.READTHEDOCS_TOKEN }} | |
| RTD_PROJECT: cellucid | |
| REF_TYPE: ${{ github.ref_type }} | |
| REF_NAME: ${{ github.ref_name }} | |
| run: | | |
| set -euo pipefail | |
| echo "Triggering Read the Docs build for version latest" | |
| curl --fail -X POST \ | |
| -H "Authorization: Token ${RTD_TOKEN}" \ | |
| "https://readthedocs.org/api/v3/projects/${RTD_PROJECT}/versions/latest/builds/" |