Skip to content

Upgrade to avr-device 0.5.3 #110

Upgrade to avr-device 0.5.3

Upgrade to avr-device 0.5.3 #110

Workflow file for this run

name: Documentation
on:
push:
branches:
- main
jobs:
docs:
name: Build Documentation
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: nightly-2022-06-13
override: true
components: rust-src
- name: Build documentation (arduino-hal)
run: cd arduino-hal/ && cargo doc --features arduino-uno
- name: Build documentation (atmega-hal)
run: cd mcu/atmega-hal/ && cargo doc --features atmega328p
- name: Build documentation (attiny-hal)
run: cd mcu/attiny-hal/ && cargo doc --features attiny85
- name: Deploy to GH-Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./target/doc
publish_branch: gh-pages
force_orphan: true