Handle invalid dataset names (#16) #45
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build and publish documentation | |
on: | |
push: | |
branches: | |
- main | |
permissions: | |
contents: write | |
id-token: write | |
pages: write | |
jobs: | |
documentation: | |
name: Build documentation | |
runs-on: ubuntu-latest | |
environment: github-pages | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Install the latest version of uv | |
uses: astral-sh/setup-uv@v4 | |
with: | |
enable-cache: true | |
cache-dependency-glob: "pyproject.toml" | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Set up build cache | |
uses: actions/cache/restore@v4 | |
with: | |
key: mkdocs-material-${{ hashfiles('.cache/**') }} | |
path: .cache | |
restore-keys: | | |
mkdocs-material- | |
- name: Configure git credentials | |
run: | | |
git config user.name github-actions[bot] | |
git config user.email 41898282+github-actions[bot]@users.noreply.github.com | |
- name: Build documentation | |
env: | |
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: | | |
uv run mike deploy --update-aliases ${{ github.event.release.tag_name }} latest | |
- name: Adjust permissions | |
run: | | |
chmod -c -R +rX site/ | while read line; do | |
echo "::warning title=Invalid file permissions automatically fixed::$line" | |
done | |
- name: Upload to GitHub Pages | |
uses: actions/upload-pages-artifact@v3 | |
with: | |
path: site | |
- name: Deploy to GitHub Pages | |
uses: actions/deploy-pages@v4 | |
- name: Save build cache | |
uses: actions/cache/save@v4 | |
with: | |
key: mkdocs-material-${{ hashfiles('.cache/**') }} | |
path: .cache |