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 ba1e255
Showing 1 changed file with 55 additions and 0 deletions.
55 changes: 55 additions & 0 deletions .github/workflows/cargo-doc-pages.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
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

- uses: actions/cache@v4
with:
path: target/
key: cargo-doc-${{ hashFiles('Cargo.lock') }}
restore-keys: |
cargo-doc-${{ hashFiles('Cargo.lock') }}
cargo-doc-
cargo-
- name: Run `cargo doc`
run: cargo doc --lib --no-deps

- name: Patch root index.html
run: echo '<head><meta http-equiv="refresh" content="0; url=theme_parser/index.html" /></head>' > target/doc/index.html

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

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

0 comments on commit ba1e255

Please sign in to comment.