Skip to content

Changed location of forceScheme to inside of boot() to avoid Mixed Co… #22

Changed location of forceScheme to inside of boot() to avoid Mixed Co…

Changed location of forceScheme to inside of boot() to avoid Mixed Co… #22

Workflow file for this run

name: deployment
on:
push:
branches: [main]
jobs:
deploy:
runs-on: self-hosted
steps:
- name: git pull
run: |
cd /home/laravel/project/Timeliner/timeliner
git fetch --all
git checkout main
git pull --all
- name: installing dependencies and setup
run: |
cd /home/laravel/project/Timeliner/timeliner
composer install
php artisan key:generate --force
php artisan migrate --force
npm install
npm run build