From 1c9d1ed63fa435e495fb1e3abbc15aecfb950902 Mon Sep 17 00:00:00 2001 From: Jonny Barnes Date: Thu, 30 Dec 2021 13:13:16 +0000 Subject: [PATCH] Fix directory permissions for cache directory --- .github/workflows/deploy.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 9f5195f7..47fae31c 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -45,6 +45,9 @@ jobs: cd ${{ env.newReleaseDir }} echo "${{ env.newReleaseName }}" > public/release-name.txt + # Fix cache directory permissions + sudo chown -R ${{ secrets.HTTP_USER }}:${{ secrets.HTTP_USER }} bootstrap/cache + - name: 🎵 Run Composer uses: appleboy/ssh-action@master with: