Skip to content

Deploy Jekyll site to Pages #363

Deploy Jekyll site to Pages

Deploy Jekyll site to Pages #363

Workflow file for this run

name: Deploy Site
on:
push:
branches:
- main
schedule:
- cron: "0 0 1 * *"
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-
- uses: helaili/jekyll-action@v2
env:
JEKYLL_PAT: ${{ secrets.JEKYLL_PAT }}
with:
jekyll_src: 'website'