Skip to content

Merge pull request #233 from ClimateImpactLab/container_publish #28

Merge pull request #233 from ClimateImpactLab/container_publish

Merge pull request #233 from ClimateImpactLab/container_publish #28

Workflow file for this run

name: website
# build the documentation whenever there are new commits on main
on:
push:
branches:
- main
# security: restrict permissions for CI jobs.
permissions:
contents: read
jobs:
# Build the documentation and upload the static HTML files as an artifact.
build:
runs-on: ubuntu-latest
defaults:
run:
shell: bash -l {0}
steps:
- uses: actions/checkout@v3
- name: Setup micromamba
uses: mamba-org/provision-with-micromamba@v16
with:
environment-file: environment.yaml
environment-name: docsbuild
- run: pip install -e .[docs]
- run: make docs
- run: tar --directory docs/ -hcf artifact.tar .
- uses: actions/upload-artifact@v3
with:
name: github-pages
path: ./artifact.tar
# Deploy the artifact to GitHub pages.
# This is a separate job so that only actions/deploy-pages has the necessary permissions.
deploy:
needs: build
runs-on: ubuntu-latest
permissions:
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- id: deployment
uses: actions/deploy-pages@v2