userguides: i2pzero migration #3655
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: gh-actions/site | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-22.04 | |
strategy: | |
fail-fast: false | |
matrix: | |
ruby: [ '2.7', '3.0.1' ] | |
name: Ruby ${{ matrix.ruby }} | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ${{ matrix.ruby }} | |
- name: install bundler | |
run: gem install bundler:2.2.23 | |
- name: bundle install | |
run: bundle install --jobs 4 --retry 3 | |
- name: build site | |
run: bundle exec jekyll build --limit-posts 10 |