25 lines
604 B
YAML
25 lines
604 B
YAML
name: sdf.ewpratten.com
|
|
|
|
on:
|
|
push:
|
|
paths:
|
|
- ".github/workflows/sdf-ewpratten-com.yml"
|
|
- "sites/sdf.ewpratten.com/**"
|
|
|
|
jobs:
|
|
deploy:
|
|
name: Deploy Cloudflare Worker
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
contents: read
|
|
environment: production
|
|
steps:
|
|
- name: Git checkout
|
|
uses: actions/checkout@v2
|
|
- name: Deploy worker
|
|
uses: cloudflare/wrangler-action@v3
|
|
with:
|
|
apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }}
|
|
accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}
|
|
workingDirectory: sites/sdf.ewpratten.com
|