this repo has no description
4
fork

Configure Feed

Select the types of activity you want to include in your feed.

✨ Add GitHub Actions workflow for deploying to Cloudflare Pages

+17
+17
.github/workflows/handbook-publish.yml
··· 1 + name: Deploy davidgasquez.com 2 + 3 + on: 4 + push: 5 + branches: 6 + - main 7 + 8 + jobs: 9 + trigger-deploy: 10 + runs-on: ubuntu-latest 11 + steps: 12 + - name: Trigger Cloudflare Pages deploy hook 13 + env: 14 + DEPLOY_HOOK_URL: ${{ secrets.CF_PAGES_DEPLOY_HOOK }} 15 + run: | 16 + set -euo pipefail 17 + curl -X POST -sS "${DEPLOY_HOOK_URL}"