Skip to content

Install "@riddled/4play" at 1.17.3 #760

Install "@riddled/4play" at 1.17.3

Install "@riddled/4play" at 1.17.3 #760

Workflow file for this run

name: Staging
on:
push:
branches:
staging
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Deploy
uses: appleboy/ssh-action@master
with:
host: ${{ secrets.STAGGING_IP }}
username: github
key: ${{ secrets.STAGGING_PRIVATE_KEY }}
port: 22
script: |
cd /var/www/4programmers.dev
git fetch
git reset origin/staging --hard
docker-compose exec -T php composer install --no-dev
make install-assets
make migration
make assets-production
make cache-config
docker-compose exec -T php php artisan queue:restart