Update comments from code review #2976
Workflow file for this run
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
on: [push] | |
jobs: | |
deploy: | |
permissions: | |
contents: read | |
deployments: write | |
runs-on: ubuntu-latest | |
name: Deploy to Cloudflare Pages | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- name: Install Python and just | |
uses: opensafely-core/setup-action@v1 | |
with: | |
install-just: true | |
python-version: "3.11" | |
- name: Check docs are current | |
run: just docs-check-generated-docs-are-current | |
- name: Build site | |
run: just docs-build | |
- name: Add a version file | |
run: echo ${{ github.sha }} > site/version.html | |
- name: Publish | |
if: ${{ github.actor != 'dependabot[bot]' }} | |
uses: cloudflare/pages-action@f0a1cd58cd66095dee69bfa18fa5efd1dde93bca # v1.5.0 | |
with: | |
accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }} | |
apiToken: ${{ secrets.CLOUDFLARE_DIRECT_UPLOAD_API_TOKEN }} | |
directory: "site" | |
gitHubToken: ${{ secrets.GITHUB_TOKEN }} | |
projectName: "databuilder-docs" |