Skip to content

snowwolf007cn editted the book #9

snowwolf007cn editted the book

snowwolf007cn editted the book #9

name: deploy-embedded-rust-arduino
run-name: ${{ github.actor }} editted the book
on:
push:
paths:
- '.github/workflows/deploy-embedded-rust-arduino.yml'
- 'embedded/rust/arduino/src/**'
- 'embedded/rust/arduino/book.toml'
jobs:
build:
name: build, test book
runs-on: ubuntu-latest
permissions:
contents: write # To push a branch
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install latest mdbook
run: |
tag=$(curl 'https://api.github.com/repos/rust-lang/mdbook/releases/latest' | jq -r '.tag_name')
url="https://github.com/rust-lang/mdbook/releases/download/${tag}/mdbook-${tag}-x86_64-unknown-linux-gnu.tar.gz"
mkdir mdbook
curl -sSL $url | tar -xz --directory=./mdbook
echo `pwd`/mdbook >> $GITHUB_PATH
- name: Build Book
run: |
cd embedded/rust/arduino
mdbook build
ls .
- name: Setup Pages
uses: actions/configure-pages@v4
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
# Upload entire repository
path: 'embedded/rust/arduino/book'
deploy:
name: deploy to pages
needs: build
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}/embedded/rust/arduino
runs-on: ubuntu-latest
permissions:
pages: write # To push to a GitHub Pages site
id-token: write # To update the deployment status
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4