We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 8f98c15 + 5ad6b12 commit 42ee706Copy full SHA for 42ee706
action.yml
@@ -11,6 +11,9 @@ runs:
11
using: composite
12
steps:
13
- uses: astral-sh/setup-uv@v5
14
+ with:
15
+ cache-dependency-glob: "${{ github.action_path }}/uv.lock"
16
+ pyproject-file: "${{ github.action_path }}/pyproject.toml"
17
18
- uses: actions/setup-python@v5
19
with:
@@ -19,8 +22,8 @@ runs:
22
- name: Assemble site from all live branches
20
23
id: assemble
21
24
shell: bash
25
+ working-directory: ${{ github.action_path }}
26
run: |
- cd ${{ github.action_path }}
27
uv run --frozen godoctopus.py
28
env:
29
GITHUB_TOKEN: ${{ github.token }}
pyproject.toml
@@ -9,3 +9,6 @@ dependencies = [
9
"jinja2>=3.1.5",
10
"requests>=2.28.1",
]
+
+[tool.uv]
+required-version = ">=0.5.0"
0 commit comments