Skip to content

Added docs on watching global app state variables. #2

Added docs on watching global app state variables.

Added docs on watching global app state variables. #2

Workflow file for this run

name: Trigger Website Docs Update
on:
push:
branches: [ master ]
paths:
- 'docs/**'
jobs:
trigger:
runs-on: ubuntu-latest
steps:
- name: Trigger Deployment
timeout-minutes: 5
run: |
response=$(curl -X POST -w "%{http_code}" -s -o /dev/null \
--max-time 30 \
--connect-timeout 10 \
--retry 2 \
--retry-delay 5 \
${{ secrets.WEBSITE_DEPLOY_URL }})
if [ "$response" -eq 200 ]; then
echo "Deployment triggered successfully"
else
echo "Failed to trigger deployment. Status code: $response"
exit 1
fi