Skip to content

New CM5 roundup video is out. #470

New CM5 roundup video is out.

New CM5 roundup video is out. #470

Workflow file for this run

# GitHub Action for Jekyll
#
# Runs jekyll build on master and pushes output to gh-pages branch.
# (Then GitHub deploys that static content.)
name: Build & Deploy to GitHub Pages
on:
push:
branches:
- master
jobs:
github-pages:
runs-on: ubuntu-latest
container: ruby:2-buster
steps:
- uses: actions/checkout@v4
- uses: actions/cache@v4
with:
path: vendor/bundle
key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }}
- name: Install Ruby dependencies.
run: |
gem install bundler -v 2.4.22
bundle install
- name: Build static site with Jekyll.
run: bundle exec jekyll build
- name: Deploy static site to gh-pages branch.
uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./_site