diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2021-06-11 15:05:00 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2021-06-11 15:05:00 +0300 |
commit | 43492e8f9c75b5d106432f0f866f89c09f670649 (patch) | |
tree | 840d91a3ad402fdb533c3531cd6374ab6dad6d6f /.github/workflows/jekyll.yml | |
parent | bump jekyll-theme (diff) | |
download | sorting-algorithms-43492e8f9c75b5d106432f0f866f89c09f670649.tar.gz sorting-algorithms-43492e8f9c75b5d106432f0f866f89c09f670649.zip |
remove stupid _config_dev.yml
Diffstat (limited to '.github/workflows/jekyll.yml')
-rw-r--r-- | .github/workflows/jekyll.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/jekyll.yml b/.github/workflows/jekyll.yml index ed110de..be87f3d 100644 --- a/.github/workflows/jekyll.yml +++ b/.github/workflows/jekyll.yml @@ -30,8 +30,8 @@ jobs: ruby-version: '${{ matrix.ruby-version }}' bundler-cache: true - name: jekyll build - run: bundle exec jekyll build --config _config.yml,_config_dev.yml --drafts + run: bundle exec jekyll build --drafts - name: Check integrity run: | - nohup bundle exec jekyll serve --config _config.yml,_config_dev.yml --drafts & + nohup bundle exec jekyll serve --drafts --baseurl '' & sleep 3 && wget --no-verbose --recursive --convert-links --adjust-extension --directory-prefix=/tmp -- http://localhost:4000/ |