mirror of https://github.com/usememos/memos
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
421 B
YAML
18 lines
421 B
YAML
name: Demo Render Deploy
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
deploy-demo:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Trigger Render Deploy
|
|
run: |
|
|
curl -X POST "${{ secrets.RENDER_DEPLOY_HOOK }}" \
|
|
-H "Content-Type: application/json" \
|
|
-d '{"trigger": "github_action"}'
|
|
|
|
- name: Deployment Status
|
|
run: echo "Demo deployment triggered successfully on Render"
|