7465fbb4cc
- Add build-binaries workflow for multi-platform binary releases - Rename workflows for conciseness: - demo-render-deploy.yml → demo-deploy.yml - build-and-push-canary-image.yml → build-canary-image.yml - build-and-push-stable-image.yml → build-stable-image.yml - Centralize version config with env variables (GO_VERSION, NODE_VERSION, PNPM_VERSION) - Standardize step names across all workflows - Add concurrency controls to prevent redundant runs - Update Node.js (20→22) and pnpm (9→10) versions to match build-binaries - Improve job names with descriptive labels - Add consistent comments and formatting - Set artifact retention to 60 days for binary builds
18 lines
414 B
YAML
18 lines
414 B
YAML
name: Demo 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"
|