Skip to content

Commit

Permalink
Merge pull request #5 from ESGF/integration
Browse files Browse the repository at this point in the history
release 0.2.0
  • Loading branch information
ltroussellier authored Jan 30, 2025
2 parents 1749c06 + ea82d6a commit 5d828bd
Show file tree
Hide file tree
Showing 63 changed files with 5,042 additions and 594 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: documentation

on:
push:
branches:
- integration
paths:
- docs/**
- src/**
- .github/workflows/docs.yml

jobs:
documentation:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- name: Install the latest version of rye
uses: eifinger/setup-rye@v4
with:
enable-cache: true

- name: Sync dependencies
run: rye sync

- name: build
run: docs/build.sh

- name: deploy
uses: peaceiris/actions-gh-pages@v3
if: ${{ github.ref == 'refs/heads/integration' }}
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./docs/build/html
26 changes: 17 additions & 9 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,21 +1,29 @@
# python generated files
# Generated files
__pycache__/
*.py[oc]
build/
dist/
wheels/
*.egg-info
mip-cmor-tables/
sb.py
# venv
docs/build

# Venv
.venv
*.lock
*.sqlite
.pdm-python
.DS_Store
.mise.toml

# IDE & OS
.vscode
.idea
.DS_Store

# Temporary files
tmp*
*.sqlite
.cache
*.bak

# Others
*.py[oc]
sb.py
CHANGELOG.md
.mise.toml
.mise.toml
Loading

0 comments on commit 5d828bd

Please sign in to comment.