Merge pull request #123 from os-checker/diff #78
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Deploy Doc | |
on: | |
push: | |
jobs: | |
build: | |
# Specify runner + build & upload the static files as an artifact | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
# - name: Build static files | |
# env: | |
# CARGO_TERM_COLOR: always | |
# run: | | |
# cargo doc --document-private-items --no-deps | |
# | |
# - name: Install rustc internal docs | |
# run: | | |
# rustup toolchain list -v | |
# # Find toolchain path | |
# export TOOLCHAIN=$(rustc --print sysroot) | |
# echo "toolchain=\"$TOOLCHAIN\"" | |
# # Remove rustc book | |
# rm $TOOLCHAIN/share/doc/rust/html/rustc -rf | |
# # Download rustc API docs | |
# rustup component add rustc-docs | |
# # Move the docs to deployment path | |
# mv $TOOLCHAIN/share/doc/rust/html/rustc target/doc/rustc | |
# | |
# - name: Prepare index.html | |
# run: | | |
# # Find toolchain name | |
# export toolchain=$(rustc --print sysroot | grep -oP "nightly-\d{4}-\d{2}-\d{2}") | |
# echo "toolchain=\"$toolchain\"" | |
# # Fill in toolchain placeholder in index.html | |
# sed "s/nightly-xxxx-xx-xx/$toolchain/" .github/index.html > target/doc/index.html | |
# | |
# - name: Upload static files as artifact | |
# uses: actions/upload-pages-artifact@v3 # or specific "vX.X.X" version tag for this action | |
# with: | |
# path: target/doc/ | |
- name: Build UI | |
run: cd ui && npm i && NUXT_APP_BASE_URL=/distributed-verification/ npm run generate | |
- name: Upload static files as artifact | |
uses: actions/upload-pages-artifact@v3 | |
with: | |
path: ui/.output/public/ | |
# Deployment job | |
deploy: | |
environment: | |
name: github-pages | |
url: ${{ steps.deployment.outputs.page_url }} | |
runs-on: ubuntu-latest | |
needs: build | |
# Grant GITHUB_TOKEN the permissions required to make a Pages deployment | |
permissions: | |
pages: write # to deploy to Pages | |
id-token: write # to verify the deployment originates from an appropriate source | |
steps: | |
- name: Deploy to GitHub Pages | |
id: deployment | |
uses: actions/deploy-pages@v4 |