From 3d6d0bcde272a158d45aaea1f458203f258352f8 Mon Sep 17 00:00:00 2001 From: Marko259 Date: Fri, 2 Aug 2024 15:16:07 +0200 Subject: [PATCH] Added command to tests --- .github/actions/setup-project/action.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/actions/setup-project/action.yml b/.github/actions/setup-project/action.yml index e80bc9c..b939584 100644 --- a/.github/actions/setup-project/action.yml +++ b/.github/actions/setup-project/action.yml @@ -29,6 +29,11 @@ runs: shell: bash working-directory: ./${{ inputs.path }} + - name: Generate symbolic link + run: php artisan storage:link + shell: bash + working-directory: ./${{ inputs.path }} + - name: Directory Permissions run: chmod -R 777 storage bootstrap/cache shell: bash