Skip to content

Merge branch 'dev' of github.com:ivargr/climate_health into dev #328

Merge branch 'dev' of github.com:ivargr/climate_health into dev

Merge branch 'dev' of github.com:ivargr/climate_health into dev #328

# This is a basic workflow to help you get started with Actions
name: build_docs
# Controls when the action will run.
on:
# Triggers the workflow on push or pull request events but only for the master branch
push:
branches: [ master, dev ]
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
build:
# The type of runner that the job will run on
runs-on: ubuntu-latest
strategy:
matrix:
os: [ ubuntu-latest ]
python-version: [ "3.10" ]
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# get copy of the code
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v3
- name: Set up Python ${{ matrix.python-version }}
run: uv python install ${{ matrix.python-version }}
- name: Install the project
run: uv sync --dev
- name: make html & commit the changes
run: |
uv run sphinx-build -b html ./docs_source ./docs
git config --global user.email "[email protected]"
git config user.name "pages"
git add -f ./docs
git commit -m 'update docs'
- name: push changes to gh-pages to show automatically
uses: ad-m/github-push-action@master
with:
branch: gh-pages
force: true