Skip to content

Update 2021-03-02-faster-pipelines-with-knapsack-pro-by-parallelizing… #307

Update 2021-03-02-faster-pipelines-with-knapsack-pro-by-parallelizing…

Update 2021-03-02-faster-pipelines-with-knapsack-pro-by-parallelizing… #307

Workflow file for this run

name: Build Jekyll
on:
push:
branches-ignore:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: 📂 checkout
uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
- name: ⚙️ install dependencies
run: npm install
- name: 💎 setup ruby
uses: ruby/setup-ruby@v1
with:
bundler-cache: true
cache-version: 0 # Increment this number if you need to re-download cached gems
- name: 🔨 build Jekyll
run: bundle exec jekyll build --baseurl "${{ steps.pages.outputs.base_path }}"
env:
JEKYLL_ENV: production