Skip to content

Adding Nessie to Available Hounds! 🌟 #572

Adding Nessie to Available Hounds! 🌟

Adding Nessie to Available Hounds! 🌟 #572

Workflow file for this run

name: Publish website
on:
workflow_dispatch:
push:
branches:
- main
paths-ignore:
- '.github/**'
- 'script/**'
concurrency:
group: ${{ github.ref }}
cancel-in-progress: true
jobs:
jekyll:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
# Use GitHub Actions' cache to shorten build times and decrease load on servers
- uses: actions/cache@v3
with:
path: vendor/bundle
key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }}
restore-keys: |
${{ runner.os }}-gems-
- uses: helaili/jekyll-action@2.5.0
with:
token: ${{ secrets.GITHUB_TOKEN }}
target_branch: 'gh-pages'