Skip to content

Initial commit

Initial commit #2

Workflow file for this run

name: pages
on:
push:
branches:
- main
env:
CARGO_TERM_COLOR: always
jobs:
gh_pages:
name: Github Pages
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Setup toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: stable
- name: Rust cache
uses: Swatinem/rust-cache@v2
- name: Make docs
run: cargo run -p make
- name: Deploy
uses: JamesIves/github-pages-deploy-action@v4
with:
branch: gh-pages
folder: target/shader_docs