1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-08 20:22:42 +01:00

Updates for build

This commit is contained in:
David Bomba 2023-08-22 17:06:36 +10:00
parent 12f2365119
commit 31f375cf3b

View File

@ -18,7 +18,7 @@ jobs:
- name: Checkout code - name: Checkout code
uses: actions/checkout@v1 uses: actions/checkout@v1
with: with:
ref: laravel10 ref: Laravel10
- name: Copy .env file - name: Copy .env file
run: | run: |
@ -32,9 +32,9 @@ jobs:
- name: Prepare Laravel Application - name: Prepare Laravel Application
run: | run: |
cp .env.example .env cp .env.example .env
php artisan key:generate php artisan key:generate --force
php artisan optimize php artisan optimize
php artisan storage:link php artisan storage:link --force
sudo php artisan cache:clear sudo php artisan cache:clear
sudo find ./vendor/bin/ -type f -exec chmod +x {} \; sudo find ./vendor/bin/ -type f -exec chmod +x {} \;
sudo find ./ -type d -exec chmod 755 {} \; sudo find ./ -type d -exec chmod 755 {} \;