Skip to content

feat(052): runtime-neutral MQTT connector #757

feat(052): runtime-neutral MQTT connector

feat(052): runtime-neutral MQTT connector #757

Workflow file for this run

name: Documentation
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
permissions:
contents: read
pages: write
id-token: write
jobs:
docs:
name: Build Documentation
runs-on: ubuntu-latest
environment: ${{ github.ref == 'refs/heads/main' && 'github-pages' || null }}
steps:
- uses: actions/checkout@v7
with:
submodules: recursive
- name: Install Rust
uses: actions-rust-lang/setup-rust-toolchain@v1
with:
rustflags: ""
- name: Build documentation
run: make doc
- name: Setup Pages
if: github.ref == 'refs/heads/main'
uses: actions/configure-pages@v6
- name: Upload artifact
if: github.ref == 'refs/heads/main'
uses: actions/upload-pages-artifact@v5
with:
path: ./target/doc-final
- name: Deploy to GitHub Pages
if: github.ref == 'refs/heads/main'
id: deployment
uses: actions/deploy-pages@v5