Skip to content

Update output files #1405

Update output files

Update output files #1405

Workflow file for this run

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/[email protected]
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