Skip to content

Fix spelling and minor grammar issues #20

Fix spelling and minor grammar issues

Fix spelling and minor grammar issues #20

Workflow file for this run

name: Build and Deploy
on:
push:
branches:
- master
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout master
uses: actions/checkout@master
- name: Install build environment
run: |
mkdir bin
curl -sSL https://github.com/rust-lang/mdBook/releases/download/v0.4.40/mdbook-v0.4.40-x86_64-unknown-linux-gnu.tar.gz \
| tar xz --directory=bin
- name: Build HTML
run: |
./bin/mdbook build
- name: Upload _site to GitHub
uses: actions/upload-pages-artifact@v3
with:
name: github-pages
path: _site
deploy:
needs: build
permissions:
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4