Skip to content

Add /oss page with hyperlinked upstream contribution blurbs. #644

Add /oss page with hyperlinked upstream contribution blurbs.

Add /oss page with hyperlinked upstream contribution blurbs. #644

Workflow file for this run

name: Beautiful Jekyll CI
on:
push:
pull_request:
jobs:
build:
name: Build Jekyll
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: "3.2"
bundler-cache: true
# Smoke-build. --future allows posts dated ahead of the runner clock.
# vendor/ is excluded in _config.yml so bundler path is not scanned as content.
- name: Build site
run: bundle exec jekyll build --future
- name: Verify build output
run: |
test -f _site/index.html
ls _site | head -n 40
echo "Jekyll CI build OK"