Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
jannik4 committed Dec 6, 2023
0 parents commit 4f90000
Show file tree
Hide file tree
Showing 32 changed files with 5,208 additions and 0 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/pages.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
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@4
with:
branch: gh-pages
folder: target/shader_docs
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
/target
/.todo
Loading

0 comments on commit 4f90000

Please sign in to comment.