diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2021-06-11 14:52:57 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2021-06-11 14:59:45 +0300 |
commit | 5e2f8ef68714104aa951df2a665bfc7561275a8d (patch) | |
tree | 1ec0522f4e66468f16b20af29e17ef7c8c90159e /.github/workflows | |
parent | latex: fix repository link (diff) | |
download | blog-5e2f8ef68714104aa951df2a665bfc7561275a8d.tar.gz blog-5e2f8ef68714104aa951df2a665bfc7561275a8d.zip |
remove stupid _config_dev.yml
Diffstat (limited to '.github/workflows')
-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 cdd44b3..b69feef 100644 --- a/.github/workflows/jekyll.yml +++ b/.github/workflows/jekyll.yml @@ -27,8 +27,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/ |