Skip to content

TL: small modification for testing #11

TL: small modification for testing

TL: small modification for testing #11

Workflow file for this run

name: Build Site
on:
pull_request:
branches:
- gaia
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.0
bundler-cache: false
- name: Setup Pages
id: pages
uses: actions/configure-pages@v4
- name: Build with Jekyll
# Outputs to the './_site' directory by default
run: bundle exec jekyll build --baseurl "${{ steps.pages.outputs.base_path }}"
- name: Archive Build
uses: actions/upload-pages-artifact@v3
with:
name: site-build
path: ./_site