mirror of
https://github.com/usememos/memos.git
synced 2025-11-10 09:21:07 +08:00
chore: add demo deployment to Render action
This commit is contained in:
parent
ea4e7a1606
commit
2bde296217
1 changed files with 17 additions and 0 deletions
17
.github/workflows/demo-render-deploy.yml
vendored
Normal file
17
.github/workflows/demo-render-deploy.yml
vendored
Normal file
|
|
@ -0,0 +1,17 @@
|
||||||
|
name: Deploy Demo to Render
|
||||||
|
|
||||||
|
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"
|
||||||
Loading…
Add table
Reference in a new issue