Bump jekyll from 4.3.3 to 4.3.4 #43
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: Gate | |
on: | |
pull_request: | |
branches: [ 'master', ] | |
jobs: | |
build-blog: | |
name: Build Blog | |
runs-on: ubuntu-latest | |
container: | |
image: fedora:latest | |
steps: | |
- name: Install Dependencies | |
run: dnf install -y ruby rubygem-bundler ruby-devel libffi libffi-devel @"Development Tools" gcc-c++ | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Install Ruby Dependencies | |
run: bundle install -j2 | |
- name: Build | |
run: bundle exec jekyll build | |