Skip to content

added gh actions for docs #1

added gh actions for docs

added gh actions for docs #1

Workflow file for this run

name: build-deploy-site
on:
push:
branches:
- master
pull_request:
branches:
- master
permissions:
contents: write
# This job installs dependencies, build the website, and pushes it to `gh-pages`
jobs:
deploy-website:
runs-on: ubuntu-latest
defaults:
run:
shell: bash -l {0}
steps:
- uses: actions/checkout@v2
# Create environment using micromamba
- name: Install Conda environment with Micromamba
uses: mamba-org/setup-micromamba@v1
with:
environment-file: doc/environment.yml
environment-name: rainforest-docs
cache-downloads: true
- name: Fetch all history for all tags and branches
run: |
git fetch --prune --unshallow
- name: Install rainforest
run: |
pip install -e .
# Build the website
- name: Build the site
run: |
cd docs
make html
# Push the book's HTML to github-pages
- name: GitHub Pages action
uses: peaceiris/[email protected]
if: github.ref == 'refs/heads/master'
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: doc/build/html
cname: https:/meteoswiss.github.io/rainforest/