Skip to content

Merge pull request #1 from lmtapia/main #4

Merge pull request #1 from lmtapia/main

Merge pull request #1 from lmtapia/main #4

Workflow file for this run

name: Build and deploy Jekyll site to GitHub Pages
on:
push
jobs:
github-pages:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
# Use GitHub Actions' cache to shorten build times and decrease load on servers
- uses: actions/cache@v2
with:
path: vendor/bundle
key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile') }}
restore-keys: |
${{ runner.os }}-gems-
# Specify the Jekyll source location as a parameter
- uses: helaili/jekyll-action@v2
with:
token: ${{ secrets.GITHUB_TOKEN }}
jekyll_src: 'CBS-Guide'