feat: Add GitHub Actions deployment workflow and refactor contact for… #1
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Deploy to Coolify | |
| on: | |
| push: | |
| branches: | |
| - main # Срабатывает при пуше в основную ветку | |
| jobs: | |
| deploy: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Trigger Coolify Webhook | |
| run: | | |
| # Вставьте ваш Webhook URL из настроек Coolify в GitHub Secrets как COOLIFY_WEBHOOK | |
| curl -X GET "${{ secrets.COOLIFY_WEBHOOK }}" |