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: Publish website | |
on: | |
push: | |
branches: | |
- docs | |
workflow_dispatch: | |
permissions: | |
id-token: write | |
actions: read | |
contents: read | |
jobs: | |
prepare: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.10' | |
- id: auth | |
uses: google-github-actions/auth@v2 | |
with: | |
credentials_json: "${{ secrets.ARTIFACT_REGISTRY_KEY }}" | |
- name: Set up Cloud SDK | |
uses: google-github-actions/setup-gcloud@v2 | |
- name: Install Poetry | |
uses: snok/install-poetry@v1 | |
with: | |
version: 1.8.3 | |
- name: Configure deploy keys | |
run: | | |
poetry self add keyrings.google-artifactregistry-auth | |
poetry config repositories.gcp https://us-west1-python.pkg.dev/probcomp-caliban/probcomp/ | |
- name: Install Python dependencies | |
run: poetry install | |
- name: Build docs site | |
run: poetry run mkdocs build | |
- name: Create website artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: website | |
path: ./site | |
publish: | |
permissions: | |
contents: read | |
id-token: write | |
needs: prepare | |
uses: probcomp/gen-website-private/.github/workflows/publish_private_website.yml@main | |
with: | |
artifact: website | |
subdomain: studio |