Skip to content

#2047 Scaling and rotating works completely now. #1074

#2047 Scaling and rotating works completely now.

#2047 Scaling and rotating works completely now. #1074

# Dummy commits done: 1
name: Testing Deploy
on:
push:
branches: development
jobs:
deploy-testing:
runs-on: ubuntu-latest
steps:
- name: Update testing environment
# Only trigger this pipeline when our source development
if: github.actor == 'Wotuu'
uses: appleboy/ssh-action@master
with:
host: ${{ secrets.SERVER_IP }}
username: ${{ secrets.DEPLOY_USERNAME }}
key: ${{ secrets.DEPLOY_PRIVATE_KEY }}
script: cd /var/www/html/keystone.guru.testing/;
php artisan readonly:enable &&
php artisan db:backup &&
php artisan up;
php artisan down --render="errors::503" --retry 60;
php artisan environment:updateprepare testing &&
php artisan environment:update testing;
php artisan readonly:disable &&
php artisan up &&
./vendor/bin/phpunit;