We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 878189f commit bbffc17Copy full SHA for bbffc17
.github/workflows/static.yml
@@ -30,15 +30,14 @@ jobs:
30
steps:
31
- name: Checkout
32
uses: actions/checkout@v4
33
- - name: Run Render-Engine
34
- uses: actions/setup-python@v5.6.0
+ - name: Install UV
+ uses: astral-sh/setup-uv@v5
35
+ - name: Build the site
36
+ run: uv run --no-dev --prerelease=allow render-engine build
37
+ - uses: actions/upload-artifact@v4
38
with:
- python-version: "3.13"
- cache: "pip"
- - name: build site
39
- run: |
40
- python -m pip install -e .
41
- render-engine build
+ name: website
+ path: ./output
42
- name: Setup Pages
43
uses: actions/configure-pages@v5
44
- name: Upload artifact
0 commit comments