Skip to content

Update Gemfile: disable html-proofer #137

Update Gemfile: disable html-proofer

Update Gemfile: disable html-proofer #137

Workflow file for this run

name: Build and deploy Jekyll site to GitHub Pages .
on:
push:
branches:
- source
jobs:
build-deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
ruby-version: '3.2'
bundler-cache: true
# Use GitHub Actions' cache to cache dependencies on servers
- uses: actions/cache@v4
with:
path: vendor/bundle
key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }}
restore-keys: |
${{ runner.os }}-gems-
# Use GitHub Deploy Action to build and deploy to GitHub
- uses: jeffreytse/[email protected]
with:
provider: 'github'
token: ${{ secrets.GITHUB_TOKEN }}
branch: 'gh-pages' # Default is gh-pages for github provider
pre_build_commands: '' # Installing additional dependencies (Arch Linux)