Automatically install cube extension when the model has a cube proper… #15
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
| # This workflow triggers a rebuild of the Npgsql documentation site whenever changes are made to master, which represents our latest released version. | |
| # This pulls in the newest source code for API doc generation. | |
| name: Trigger Documentation Build | |
| on: | |
| push: | |
| branches: | |
| - docs | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Trigger documentation build | |
| run: | | |
| curl -X POST \ | |
| -H "Authorization: token ${{ secrets.DOC_MGMT_TOKEN }}" \ | |
| -H "Accept: application/vnd.github.everest-preview+json" \ | |
| -H "Content-Type: application/json" \ | |
| --data '{ "event_type": "Npgsql push to stable" }' \ | |
| https://api.github.com/repos/npgsql/doc/dispatches |