diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2022-03-02 12:15:22 +0500 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2022-03-02 12:30:34 +0500 |
commit | f8e3f384b1f3a2505bee16054fb7a2ec42ca94a7 (patch) | |
tree | bf13094568d8f23acb1781414020168142c03995 /.github/workflows/jekyll.yml | |
parent | this nokogiri version requires Ruby >= 2.6 (diff) | |
download | wireguard-config-f8e3f384b1f3a2505bee16054fb7a2ec42ca94a7.tar.gz wireguard-config-f8e3f384b1f3a2505bee16054fb7a2ec42ca94a7.zip |
add Makefile with shortcuts
Diffstat (limited to '.github/workflows/jekyll.yml')
-rw-r--r-- | .github/workflows/jekyll.yml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/jekyll.yml b/.github/workflows/jekyll.yml index b506038..f1941f4 100644 --- a/.github/workflows/jekyll.yml +++ b/.github/workflows/jekyll.yml @@ -26,9 +26,9 @@ jobs: with: ruby-version: '${{ matrix.ruby-version }}' bundler-cache: true - - name: jekyll build - run: bundle exec jekyll build --drafts + - name: Build + run: make build - name: Check integrity run: | - nohup bundle exec jekyll serve --drafts --baseurl '' & - sleep 3 && wget --no-verbose --recursive --convert-links --adjust-extension --directory-prefix=/tmp -- http://localhost:4000/ + nohup make serve & + sleep 3 && make wget |