summaryrefslogtreecommitdiffstats
path: root/.github/workflows/website.yml
blob: 6fc8b8095a04bf3670de09eba7ff342ef631a231 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
name: Update website
on:
  push:
    branches:
      - master
    paths:
      - 'docs/**'
concurrency: website
permissions:
  contents: write

jobs:
  website:
    runs-on: ubuntu-latest
    steps:
      - name: Checkout code
        uses: actions/checkout@v3
        with:
          fetch-depth: 0
      - name: Setup Python
        uses: actions/setup-python@v4
        with:
          python-version: '3.11'
          cache: pipenv
      - name: Install pipenv
        run: pip install pipenv
      - name: Install dependencies
        run: pipenv sync
        working-directory: docs
      - name: Update website
        run: scripts/update-website
      - name: Commit changes
        run: |
          if ! git diff --quiet; then
            git add --all
            git config user.name 'github-actions[bot]'
            git config user.email 'github-actions[bot]@users.noreply.github.com'
            git commit -m 'Update website'
            git push origin gh-pages
          fi