xonsh/.github/workflows/docs.yml

68 lines
2 KiB
YAML
Raw Normal View History

name: Build and deploy docs
on:
push:
branches:
- main
tags:
2022-06-17 22:09:12 +05:30
- "*.*.*"
2022-01-18 23:07:14 +05:30
pull_request:
branches:
- main
workflow_dispatch:
permissions:
contents: read
jobs:
build:
if: github.repository_owner == 'xonsh'
runs-on: ubuntu-latest
2024-04-22 12:21:18 +05:30
env:
UV_CACHE_DIR: .cache/uv
name: Xonsh docs to gh-pages
steps:
- uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
2022-06-17 22:09:12 +05:30
python-version: "3.10"
2024-04-22 12:01:05 +05:30
- uses: yezz123/setup-uv@v4
- name: set current week
2024-04-22 12:28:06 +05:30
run: echo WEEK=$(date +%V) >>$GITHUB_ENV
shell: bash
2024-04-22 12:01:05 +05:30
- name: Cache uv pip for a week
id: cache-uv
uses: actions/cache@v4
with:
path: ${{ env.UV_CACHE_DIR }}
2024-04-22 12:28:06 +05:30
key: ${{ runner.os }}-uv-${{ hashFiles('pyproject.toml') }}-${{ env.WEEK }}
2024-04-22 12:01:05 +05:30
restore-keys: ${{ runner.os }}-uv-
- run: uv pip install --system -e '.[doc]'
- name: Build Docs
run: cd docs && make html
- uses: tibdex/github-app-token@v2
if: ${{ github.event_name != 'pull_request' }}
id: generate-token
with:
app_id: ${{ secrets.APP_ID }}
private_key: ${{ secrets.APP_PRIVATE_KEY }}
repository: xonsh/xonsh-docs
- name: Deploy to dev if not tagged
2022-01-18 23:07:14 +05:30
if: github.event_name != 'pull_request' && !startsWith(github.ref, 'refs/tags/v')
uses: peaceiris/actions-gh-pages@v4
with:
personal_token: ${{ steps.generate-token.outputs.token }}
external_repository: xonsh/xonsh-docs
publish_dir: ./docs/_build/html
destination_dir: dev # latest as in main branch
- name: Deploy to stable if tagged
2022-01-18 23:07:14 +05:30
if: github.event_name != 'pull_request' && startsWith(github.ref, 'refs/tags/v')
uses: peaceiris/actions-gh-pages@v4
with:
personal_token: ${{ steps.generate-token.outputs.token }}
external_repository: xonsh/xonsh-docs
publish_dir: ./docs/_build/html
# # todo: implement versioned docs