TMP: test the node_modules named volume approach #1283
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: Docs | |
on: | |
# Build docs on pull request to verify changes | |
pull_request: | |
branches: | |
- master | |
# Deploy to production on master | |
push: | |
branches: | |
- master | |
# Deploy `master` on workflow dispatch. | |
workflow_dispatch: | |
jobs: | |
build_docs: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Pages | |
uses: actions/configure-pages@v4 | |
- uses: ./.github/actions/build-docker | |
with: | |
target: development | |
id: build | |
- name: Build Docs | |
uses: ./.github/actions/run-docker | |
with: | |
version: ${{ steps.build.outputs.version }} | |
copy: true | |
command: | | |
make docs | |
- name: Upload artifact | |
uses: actions/upload-pages-artifact@v3 | |
with: | |
path: 'docs/_build/html' | |
name: "docs" | |
deploy_docs: | |
# only deploy on push to the master branch | |
if: github.event_name == 'push' && github.ref == 'refs/heads/master' | |
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages | |
permissions: | |
contents: read | |
pages: write | |
id-token: write | |
# Only deploy the latest build artifact to GitHub Pages | |
concurrency: | |
group: "pages" | |
cancel-in-progress: true | |
needs: build_docs | |
environment: | |
name: github-pages | |
url: ${{ steps.deployment.outputs.page_url }} | |
runs-on: ubuntu-latest | |
steps: | |
- name: Deploy to GitHub Pages | |
id: deployment | |
uses: actions/deploy-pages@v4 | |
with: | |
artifact_name: "docs" |