From 93f235a08a408987923069160ba2f108528f098d Mon Sep 17 00:00:00 2001 From: Vincent Tam Date: Mon, 2 Sep 2019 23:21:23 +0200 Subject: [PATCH] Used absolute path for '/srv/jekyll' To avoid error "chmod: srv/jekyll: No such file or directory", see https://github.com/VincentTam/beautiful-jekyll/commit/2d0370a1f93818a8a8e19dc364e8906ee76aedd7/checks#step:3:6. --- ci/jekyll.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/jekyll.yml b/ci/jekyll.yml index 7ceac58..7820958 100644 --- a/ci/jekyll.yml +++ b/ci/jekyll.yml @@ -13,4 +13,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 777 /srv/jekyll && jekyll build --future"