diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2023-06-07 12:05:26 +0200 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2023-06-07 12:05:28 +0200 |
commit | 36a46ad6fe335f4f95a04f887514ea3924691876 (patch) | |
tree | 37e22e99b2cc90c2aff7c16d243180f4c61680ea /.github/workflows/jekyll.yml | |
parent | workflows/jekyll: use .ruby-version for setup-ruby action (diff) | |
download | sorting-algorithms-36a46ad6fe335f4f95a04f887514ea3924691876.tar.gz sorting-algorithms-36a46ad6fe335f4f95a04f887514ea3924691876.zip |
fix make wget w/ live reload
A newer version of Jekyll breaks wget with --livereload and
--convert-links.
Diffstat (limited to '.github/workflows/jekyll.yml')
-rw-r--r-- | .github/workflows/jekyll.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/jekyll.yml b/.github/workflows/jekyll.yml index 2a70e51..a5b7c8d 100644 --- a/.github/workflows/jekyll.yml +++ b/.github/workflows/jekyll.yml @@ -22,7 +22,7 @@ jobs: run: make build - name: Check integrity run: | - nohup make serve & + nohup make serve LIVE_RELOAD=0 & sleep 3 && make wget - name: Set up ssh-agent uses: webfactory/ssh-agent@v0.7.0 |