Add GitHub Actions workflow for deployment

This commit is contained in:
DekartDev 2026-05-06 16:27:22 +03:00
parent 9832f09c61
commit e962e837f9

View File

@ -0,0 +1,29 @@
name: Deploy to site
on:
workflow_dispatch:
inputs:
site:
description: 'Выберите сайт для деплоя'
required: true
type: choice
options:
- schelkovo.dekart.school
- balashiha.dekart.school
- korolev.dekart.school
- mytishchi.dekart.school
- pushkino.dekart.school
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Deploy to ${{ inputs.site }}
run: |
echo "🚀 Deploying to ${{ inputs.site }}..."
echo "TODO: SSH connection and deploy.sh execution"
echo "✅ Deploy completed!"