Skip to content

Commit

Permalink
ci: Host cargo doc on GitHub Pages
Browse files Browse the repository at this point in the history
  • Loading branch information
max-ishere committed Feb 7, 2024
1 parent 1116234 commit c29949d
Showing 1 changed file with 42 additions and 0 deletions.
42 changes: 42 additions & 0 deletions .github/workflows/cargo-doc-pages.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
name: Deploy `cargo doc` to GitHub Pages

on:
push:
# branches:
# - main

permissions:
contents: read
pages: write
id-token: write

concurrency:
group: "pages"
cancel-in-progress: false

jobs:
deploy-doc:
runs-on: ubuntu-latest

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

steps:
- name: Checkout
uses: actions/checkout@v4

- name: Setup Pages
uses: actions/configure-pages@v3

- name: Run `cargo doc`
run: cargo doc --lib --no-deps

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

- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v2

0 comments on commit c29949d

Please sign in to comment.