update header to v923.11 and fix uv build #2
Workflow file for this run
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: Documentation | |
| on: | |
| push: | |
| tags: | |
| - 'v*' | |
| - '*.*.*' | |
| jobs: | |
| trigger-docs: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Trigger Read the Docs Build | |
| run: | | |
| # Create request body | |
| BODY='{}' | |
| # Create HMAC-SHA256 signature | |
| SIGNATURE=$(echo -n "$BODY" | openssl dgst -sha256 -hmac "${{ secrets.RTD_WEBHOOK_TOKEN }}" -binary | xxd -p -c 256) | |
| # Send request to Read the Docs webhook | |
| curl -X POST \ | |
| -H "X-RTD-Signature: sha256=$SIGNATURE" \ | |
| -H "Content-Type: application/json" \ | |
| -d "$BODY" \ | |
| https://app.readthedocs.org/api/v2/webhook/python-ics/319966/ |