From 7d3cfbd03503bceaa75ac3b07f6302dfd0b341e8 Mon Sep 17 00:00:00 2001 From: sceee Date: Thu, 15 Apr 2021 18:17:57 +0200 Subject: [PATCH] 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 --- ci/jekyll.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/jekyll.yml b/ci/jekyll.yml index 9449a6e..71920c1 100644 --- a/ci/jekyll.yml +++ b/ci/jekyll.yml @@ -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"