Skip to content

Commit

Permalink
ci-cd: deploy docs to github pages
Browse files Browse the repository at this point in the history
  • Loading branch information
bingxueshuang committed Sep 22, 2023
1 parent 55b31ff commit 994948f
Showing 1 changed file with 43 additions and 0 deletions.
43 changes: 43 additions & 0 deletions .github/workflows/doc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
name: Docs

on:
push:
branches:
- main

jobs:
rustdoc:
name: Rustdoc
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4

- name: Install Rust
uses: actions-rs/toolchain@v1
with:
profile: minimal

- name: Create rustdoc
run: cargo doc --document-private-items

- name: Upload artifacts
uses: actions/upload-pages-artifact@v2
with:
path: target/doc

deploy:
needs: build
permissions:
pages: write
id-token: write

environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}

runs-on: ubuntu-latest
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v2

0 comments on commit 994948f

Please sign in to comment.