Skip to content

[Add] Readme

[Add] Readme #19

Workflow file for this run

# name: CD - Deploy Application
# on: [push]
# jobs:
# build:
# name: Build
# runs-on: ubuntu-18.04
# steps:
# - name: Deploy to Server
# uses: appleboy/ssh-action@master
# with:
# host: ${{ secrets.SSH_HOST }}
# username: ${{ secrets.SSH_USERNAME }}
# key: ${{ secrets.SSH_KEY }}
# port: ${{ secrets.SSH_PORT }}
# script: |
# cd /var/www/html/laravel-mbti
# git pull
# yarn
# composer update
# php artisan optimize:clear