Skip to content

Positioning + Minor Formatting (#7) #2

Positioning + Minor Formatting (#7)

Positioning + Minor Formatting (#7) #2

Workflow file for this run

name: Jekyll Site CI
on:
push:
branches:
- main
workflow_dispatch: # manual trigger for testing
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: '3.1'
- name: Install dependencies
run: |
gem install bundler
bundle install
- name: Build the site
run: bundle exec jekyll build --future
- name: Deploy to GitHub Pages
uses: jamesives/github-pages-deploy-action@v4
with:
branch: gh-pages
folder: _site
clean: false