Skip to content

Refactor plugin configuration flags to use appropriate types and impr… #99

Refactor plugin configuration flags to use appropriate types and impr…

Refactor plugin configuration flags to use appropriate types and impr… #99

Workflow file for this run

name: Build and Release Docs
on:
push:
branches:
- main
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: "pages"
cancel-in-progress: true
jobs:
docs:
name: Build and Release Docs
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
with:
submodules: recursive
- uses: actions/cache@v4
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- name: Install VapourSynth
uses: animafps/install-vapoursynth-action@master
with:
version: 72
cache: true
- name: Run doc
run: |
rustup update nightly && rustup default nightly
cargo doc --workspace --no-deps --exclude example_plugin --exclude rspipe
- name: Deploy documentation
uses: actions/upload-pages-artifact@v3
with:
path: target/doc
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4