Skip to content

Update README.md

Update README.md #7

Workflow file for this run

name: Run mdbook and deply to github pages
on:
# Runs on pushes targeting the default branch
push:
branches: ["main"]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: read
pages: write
id-token: write
# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
concurrency:
group: "pages"
cancel-in-progress: false
jobs:
# Build job
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install mdBook
run: |
# Send a GET request to the URL and follow redirects
redirect_url=$(curl -Ls -o /dev/null -w %{url_effective} https://github.com./rust-lang/mdBook/releases/latest)
# Extract the latest version number using regex
if [[ $redirect_url =~ v[0-9\.].*$ ]]; then
version="${BASH_REMATCH[0]}"
fi
# Get the download link for the latest binery of mdBook for GNU/Linux
download_url="https://github.com./rust-lang/mdBook/releases/download/$version/mdbook-$version-x86_64-unknown-linux-gnu.tar.gz"
mkdir bin
# Download the binery and install it to the newly created directory named bin
curl -sSL $download_url | tar -xz --directory=bin
echo "$(pwd)/bin" >> ${GITHUB_PATH}
- name: Setup Pages
id: pages
uses: actions/configure-pages@v4
- name: Build with mdBook
run: mdbook build
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: ./docs
# Deployment job
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: build
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4