Docs: Fix grid wrangler issues. #117
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 Documentation | |
| on: | |
| push: | |
| branches: | |
| - main | |
| - develop | |
| workflow_dispatch: {} | |
| jobs: | |
| post: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Set WEBHOOK_URL for main | |
| if: github.ref == 'refs/heads/main' | |
| run: echo "WEBHOOK_URL=${{ secrets.PAGES_DEPLOY_MAIN_WEBHOOK_URL }}" >> "$GITHUB_ENV" | |
| - name: Set WEBHOOK_URL for develop | |
| if: github.ref == 'refs/heads/develop' | |
| run: echo "WEBHOOK_URL=${{ secrets.PAGES_DEPLOY_DEVELOP_WEBHOOK_URL }}" >> "$GITHUB_ENV" | |
| - name: Send Cloudflare Pages Webhook POST request | |
| run: curl -X POST ${{ env.WEBHOOK_URL }} |