Skip to content

Fix deployment of mdbook export to GitHub pages #379

Fix deployment of mdbook export to GitHub pages

Fix deployment of mdbook export to GitHub pages #379

Workflow file for this run

name: Checks
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
lint:
runs-on: ubuntu-24.04
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
- run: bin/check
build-mdbook:
steps:

Check failure on line 22 in .github/workflows/linting.yml

View workflow run for this annotation

GitHub Actions / Checks

Invalid workflow file

The workflow is not valid. .github/workflows/linting.yml (Line: 22, Col: 5): Required property is missing: runs-on
- uses: actions/checkout@v4
- name: Setup mdBook
uses: peaceiris/actions-mdbook@v2
with:
mdbook-version: 'latest'
- name: Emojify Book
run: |
set -x
wget --no-verbose https://github.com/shonfeder/emojitsu/releases/download/0.1.1/gh-actions-emojitsu
chmod +x gh-actions-emojitsu
find . -type f -name "*.md" -exec ./gh-actions-emojitsu emojify -i {} \;
- run: mdbook build