mirror of
https://github.com/pinnacle-comp/pinnacle.git
synced 2024-12-25 09:59:21 +01:00
34 lines
831 B
YAML
34 lines
831 B
YAML
name: Build Rust Docs
|
|
on:
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
paths:
|
|
- "api/rust/**"
|
|
push:
|
|
branches:
|
|
- main
|
|
paths:
|
|
- "api/rust/**"
|
|
workflow_dispatch:
|
|
|
|
env:
|
|
BRANCH_NAME: ${{ github.head_ref || github.ref_name }}
|
|
|
|
jobs:
|
|
build:
|
|
name: Build docs
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
- name: Build docs
|
|
run: cd ./api/rust && cargo doc
|
|
- name: Create index.html
|
|
run: echo "<meta http-equiv=\"refresh\" content=\"0; url=pinnacle_api\">" > ./api/rust/target/doc/index.html
|
|
- name: Deploy
|
|
uses: peaceiris/actions-gh-pages@v3
|
|
with:
|
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
|
publish_dir: ./api/rust/target/doc
|
|
destination_dir: ${{ env.BRANCH_NAME }}/rust
|