Skip to content

Update build script for github pages #70

Update build script for github pages

Update build script for github pages #70

Workflow file for this run

name: Publish to GitHub Pages branch
on:
push:
branches:
- master
jobs:
jekyll:
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-
- name: Setup Pages
uses: actions/configure-pages@v5
# Build an artefact
- name: Build
uses: actions/jekyll-build-pages@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
- name: Upload artifact
uses: actions/upload-pages-artifact@v3