Update/gh workflows (#916) #38
This file contains 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: generate github pages | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- ".github/workflows/website.yaml" | |
- "docs/**" | |
permissions: | |
contents: read | |
jobs: | |
deploy: | |
runs-on: ubuntu-20.04 | |
permissions: | |
actions: read | |
contents: write | |
deployments: read | |
packages: none | |
steps: | |
- name: Harden Runner | |
uses: step-security/harden-runner@5c7944e73c4c2a096b17a9cb74d65b6c2bbafbde # v2.9.1 | |
with: | |
egress-policy: audit | |
disable-sudo: true | |
disable-telemetry: true | |
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
with: | |
submodules: true | |
fetch-depth: 0 | |
- name: Set TOOLS_BIN_DIR and add to PATH | |
run: | | |
TOOLS_BIN_DIR="${HOME}/.cargo/bin" | |
echo "TOOLS_BIN_DIR=${TOOLS_BIN_DIR}" >> ${GITHUB_ENV} | |
echo "${TOOLS_BIN_DIR}" >> ${GITHUB_PATH} | |
- name: Build | |
run: make -C docs/book build | |
- name: Deploy | |
uses: peaceiris/actions-gh-pages@4f9cc6602d3f66b9c108549d475ec49e8ef4d45e # v4.0.0 | |
if: ${{ github.ref == 'refs/heads/main' }} | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: ./docs/book/book |