We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8e7e5c0 commit 9f543a6Copy full SHA for 9f543a6
.github/workflows/main.yml
@@ -92,3 +92,14 @@ jobs:
92
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
93
run: pip install coveralls && coveralls --service=github
94
continue-on-error: true # Coveralls.io is currently overloaded
95
+
96
+ - name: Render docs if master was updated and the deploy_webhook_url is set
97
+ # See https://render.com/docs/deploy-hooks on how to deploy using a webhook:
98
+ env:
99
+ docs_deploy_branch: refs/heads/master
100
+ deploy_webhook_url: ${{ secrets.RENDER_DEPLOY_HOOK_URL }}
101
+ if: |
102
+ env.deploy_webhook_url && github.ref == env.docs_deploy_branch &&
103
+ matrix.python-version == env.PYTHON_VERSION_USED_FOR_COVERAGE
104
+ run: |
105
+ curl "$deploy_webhook_url"
0 commit comments