Bump furo from 2024.4.27 to 2024.8.6 in /docs (#2519) #2528
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: github-DOCS | |
on: | |
pull_request: | |
types: [ opened, reopened, synchronize ] | |
push: | |
branches: [ develop ] | |
permissions: | |
contents: none | |
jobs: | |
build: | |
runs-on: [macos-latest] | |
steps: | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
with: | |
path: kokkos-kernels | |
- uses: actions/[email protected] | |
with: | |
python-version: '3.13.2' | |
- run: pip install -r kokkos-kernels/docs/build_requirements.txt | |
- name: build_docs | |
working-directory: kokkos-kernels/docs | |
run: | | |
make html | |
- name: Updload documentation as artifact | |
id: deployment | |
uses: actions/[email protected] | |
with: | |
name: github-pages | |
path: kokkos-kernels/docs/generated_docs/ | |
deploy: | |
if: ${{ github.ref == 'refs/heads/develop' }} | |
environment: | |
name: github-pages | |
url: ${{ steps.deployment.outputs.page_url }} | |
runs-on: [macos-latest] | |
needs: build | |
permissions: | |
contents: read | |
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/[email protected] |