Skip to content

Bump nokogiri from 1.16.3 to 1.16.4 #266

Bump nokogiri from 1.16.3 to 1.16.4

Bump nokogiri from 1.16.3 to 1.16.4 #266

Workflow file for this run

name: CI
on:
create:
pull_request:
workflow_dispatch:
push:
branches:
- '**'
jobs:
deploy:
name: Build and Deploy
runs-on: [ ubuntu-latest ]
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
- name: Setup nanoc
uses: ruby/setup-ruby@v1
with:
ruby-version: 2.7
- name: Install dependencies
run: make bundle
- name: Build static site
run: make build
- name: Deploy
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }}
uses: JamesIves/github-pages-deploy-action@3.7.1
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
BRANCH: gh-pages
FOLDER: docs
CLEAN: true