31 lines
1000 B
YAML
31 lines
1000 B
YAML
name: Deploy to Production
|
|
on:
|
|
push:
|
|
branches: [main]
|
|
|
|
jobs:
|
|
deploy:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: Deploy to prod server
|
|
uses: appleboy/ssh-action@v0.1.5
|
|
with:
|
|
host: ${{ secrets.HOST }}
|
|
username: ${{ secrets.USERNAME }}
|
|
key: ${{ secrets.SSH_KEY }}
|
|
request_pty: true
|
|
script: |
|
|
# Clone repo if it doesn't exist
|
|
if [ ! -d "/var/www/caloriethingy.com/.git" ]; then
|
|
rm -rf /var/www/caloriethingy.com
|
|
git clone https://git.sometimescode.com/cgsmith/caloriethingy.com.git /var/www/caloriethingy.com
|
|
fi
|
|
cd /var/www/caloriethingy.com
|
|
git pull origin main
|
|
composer install --no-dev --optimize-autoloader
|
|
php init --env=Production --overwrite=n
|
|
php yii migrate
|
|
sudo systemctl restart calorie
|
|
sudo chown -R www-data:www-data . |