Skip to content

feat: rewrite project #9

feat: rewrite project

feat: rewrite project #9

Workflow file for this run

on:
push:
tags:
- "v*"
jobs:
generate-docs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
ref: main
- name: Install latest stable rust toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: stable
default: true
override: true
- name: Delete existing docs directory
run: rm -rf ./docs/
- name: Generate docs
run: cargo doc --release --no-deps
- name: Create index.html for github pages
run: echo "<meta http-equiv=\"refresh\" content=\"0; url=kate\">" > target/doc/index.html
- name: Copy generated docs to docs folder
run: cp -r ./target/doc ./docs
- name: Commit updated documentation
uses: stefanzweifel/git-auto-commit-action@v4
with:
commit_message: "docs: autogenerate documentation"