Add recursive write permissions to "/srv/jekyll"

Add recursive write permissions to the site directory to avoid permission denied errors in case of jekyll requiring to create the output directory
This commit is contained in:
sceee
2021-04-15 18:17:57 +02:00
committed by GitHub
parent a3d822534a
commit 7d3cfbd035
+1 -1
View File
@@ -17,4 +17,4 @@ jobs:
run: |
docker run \
-v ${{ github.workspace }}:/srv/jekyll -v ${{ github.workspace }}/_site:/srv/jekyll/_site \
jekyll/builder:latest /bin/bash -c "chmod 777 /srv/jekyll && jekyll build --future"
jekyll/builder:latest /bin/bash -c "chmod -R 777 /srv/jekyll && jekyll build --future"