mirror of
https://github.com/monero-project/monero-site.git
synced 2024-12-23 03:59:26 +00:00
workflows: improve performance of github CI
- Bump actions/checkout to v2 - Limit number of posts to be built to 10
This commit is contained in:
parent
9bfde279ff
commit
eaf89cc355
1 changed files with 2 additions and 2 deletions
4
.github/workflows/ci.yml
vendored
4
.github/workflows/ci.yml
vendored
|
@ -11,7 +11,7 @@ jobs:
|
|||
ruby: [ '2.4', '2.5', '2.6', '2.7' ]
|
||||
name: Ruby ${{ matrix.ruby }}
|
||||
steps:
|
||||
- uses: actions/checkout@v1
|
||||
- uses: actions/checkout@v2
|
||||
- uses: actions/setup-ruby@v1
|
||||
with:
|
||||
ruby-version: ${{ matrix.ruby }}
|
||||
|
@ -20,4 +20,4 @@ jobs:
|
|||
- name: bundle install
|
||||
run: bundle install --jobs 4 --retry 3
|
||||
- name: build site
|
||||
run: bundle exec jekyll build
|
||||
run: bundle exec jekyll build --limit-posts 10
|
||||
|
|
Loading…
Reference in a new issue