Merge pull request #1642 from opensafely/steve/remove-unneeded-cohort… #2794
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: | |
workflow_dispatch: | |
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: Build site | |
env: | |
AccessToken: ${{ secrets.GITHUB_TOKEN }} | |
MKDOCS_SITE_URL: https://docs.opensafely.org | |
MKDOCS_MULTIREPO_CLEANUP: true | |
EHRQL_BRANCH: main | |
run: just 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: "opensafely-docs" |