Skip to content

transform dataset

transform dataset #254

Workflow file for this run

name: Docs
on:
# Runs on pushes targeting the default branch
push:
branches: ["main"]
pull_request:
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: read
pages: write
id-token: write
# Allow one concurrent deployment
concurrency:
group: "pages"
cancel-in-progress: true
jobs:
# Build job
build:
runs-on: ubuntu-latest
defaults:
run:
shell: bash -l {0}
steps:
- name: Checkout
uses: actions/checkout@v3
- uses: mamba-org/setup-micromamba@v1
with:
environment-file: environment.yml
channels: conda-forge
cache-environment: true
post-cleanup: 'all'
init-shell: >-
bash
powershell
extra-specs: python=3.11
- name: Install documentation dependencies
run: |
micromamba install -f docs/requirements.txt
- name: Cache cartopy maps
id: cache-cartopy
uses: actions/cache@v4
with:
path: ~/.local/share/cartopy
key: cartopy-maps
- name: Build docs with sphinx
run: |
cd docs
make html
- name: Setup Pages
uses: actions/configure-pages@v2
- name: Upload artifact
uses: actions/upload-pages-artifact@v1
with:
path: ./docs/build/html
# Deployment job
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: build
if: github.ref == 'refs/heads/main'
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v1