Skip to content

Fix linter to support the mitre field #23

Fix linter to support the mitre field

Fix linter to support the mitre field #23

Workflow file for this run

name: Pages
on:
push:
branches:
- master
permissions:
contents: read
pages: write
id-token: write
jobs:
Build:
runs-on: ubuntu-22.04
steps:
- name: Checkout code
uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
ruby-version: 3.3.4
bundler-cache: true
- name: Setup Pages
id: pages
uses: actions/configure-pages@v5
- name: Build Jekyll
run: bundle exec jekyll build
env:
JEKYLL_ENV: production
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
Deploy:
environment:
name: github-pages
runs-on: ubuntu-22.04
needs: Build
steps:
- name: Deploy to GitHub Pages
uses: actions/deploy-pages@v4