Files
caloriethingy.com/.gitea/workflows/deploy.yml
cgsmith ce547e2b14
Some checks failed
Deploy to Production / deploy (push) Failing after 5s
Update .gitea/workflows/deploy.yml
2025-09-26 11:39:42 -05:00

25 lines
687 B
YAML

name: Deploy to Production
on:
push:
branches: [main]
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Deploy to local server
uses: appleboy/ssh-action@v0.1.5
with:
host: ${{ secrets.HOST }}
username: ${{ secrets.USERNAME }}
key: ${{ secrets.SSH_KEY }}
script: |
cd /var/www/caloriethingy.com
git pull origin main
composer install --no-dev --optimize-autoloader
php init --env=Production --overwrite=n
php yii migrate
systemctl restart calorie-queue@*
chown -R www-data:www-data .