17 lines
602 B
YAML
17 lines
602 B
YAML
|
on: [push]
|
||
|
|
||
|
jobs:
|
||
|
build:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- uses: actions/checkout@v4
|
||
|
- name: Setup Ruby
|
||
|
uses: https://github.com/ruby/setup-ruby@8575951200e472d5f2d95c625da0c7bec8217c42 # v1.161.0
|
||
|
with:
|
||
|
ruby-version: '3.2.3' # Not needed with a .ruby-version file
|
||
|
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
|
||
|
cache-version: 0 # Increment this number if you need to re-download cached gems
|
||
|
- name: Build
|
||
|
run: bundle exec jekyll build
|
||
|
- name: Copy
|
||
|
run: cp _site/* /pages/
|