Link configuration reference from more pages and update tool #1402
Workflow file for this run
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 the website | |
| on: | |
| workflow_dispatch: | |
| pull_request: | |
| merge_group: | |
| jobs: | |
| pre-commit: | |
| name: pre-commit checks | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: '3.x' | |
| - name: Run pre-commit | |
| uses: pre-commit/action@v3.0.1 | |
| build: | |
| needs: pre-commit | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| with: | |
| submodules: true | |
| lfs: false | |
| path: website | |
| - uses: ruby/setup-ruby@v1 | |
| with: | |
| bundler-cache: true | |
| working-directory: website | |
| - name: Build site | |
| working-directory: website | |
| env: | |
| JEKYLL_ENV: production | |
| run: bundle exec jekyll build | |
| - name: Upload site | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: site | |
| path: website/_site | |
| if-no-files-found: error |