Tiger Cloud on Azure (#4515) #2412
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: Deploy docs to prod | |
| on: | |
| push: | |
| branches: | |
| - latest | |
| permissions: {} | |
| jobs: | |
| trigger: | |
| name: Docs prod deploy | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Repository Dispatch | |
| uses: peter-evans/repository-dispatch@26b39ed245ab8f31526069329e112ab2fb224588 | |
| with: | |
| token: ${{ secrets.ORG_AUTOMATION_TOKEN }} | |
| repository: timescale/web-documentation | |
| event-type: build-docs-content-prod | |
| trigger-amplify: | |
| name: Trigger Amplify build | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Trigger Amplify Webhook | |
| env: | |
| WEBHOOK_URL: ${{ secrets.AMPLIFY_WEBHOOK_URL }} | |
| run: | | |
| curl -X POST "$WEBHOOK_URL" |