chore: add manual deployment trigger to GitHub workflow

- Added workflow_dispatch trigger to enable manual deployments from GitHub Actions UI
- Maintains existing automated deployments on main branch pushes
- Improves operational flexibility by allowing ad-hoc deployments when needed
This commit is contained in:
juanatsap
2025-10-31 11:54:26 +00:00
parent e5e09926f1
commit 73155e3900
+1 -1
View File
@@ -4,7 +4,7 @@ on:
push:
branches:
- main
workflow_dispatch: # Allow manual deployment from GitHub UI
workflow_dispatch: # Allow manual deployment from GitHub UI
jobs:
deploy: