mirror of
https://github.com/kou029w/jwk.pages.dev.git
synced 2025-01-31 06:18:06 +00:00
17 lines
409 B
YAML
17 lines
409 B
YAML
|
name: deploy
|
||
|
on:
|
||
|
workflow_dispatch:
|
||
|
push:
|
||
|
branches: main
|
||
|
jobs:
|
||
|
deploy:
|
||
|
if: github.ref == 'refs/heads/main'
|
||
|
runs-on: ubuntu-latest
|
||
|
timeout-minutes: 1
|
||
|
steps:
|
||
|
- name: Deploy
|
||
|
run: curl -sSf -X POST "${DEPLOY_WEBHOOK_URL}"
|
||
|
env:
|
||
|
# https://developers.cloudflare.com/pages/platform/deploy-hooks
|
||
|
DEPLOY_WEBHOOK_URL: ${{ secrets.DEPLOY_WEBHOOK_URL }}
|