Skip to content

Commit bd4db85

Browse files
author
Martin Stadler
committed
Use uv setup action provided by astral
1 parent d576000 commit bd4db85

File tree

1 file changed

+9
-11
lines changed

1 file changed

+9
-11
lines changed

.github/workflows/gh-pages.yml

Lines changed: 9 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
name: Documentation
22

3-
on:
4-
push:
5-
branches:
6-
- main
3+
# on:
4+
# push:
5+
# branches:
6+
# - main
77

88
permissions:
99
contents: write
@@ -15,20 +15,18 @@ jobs:
1515

1616
steps:
1717
- name: Checkout
18-
uses: actions/checkout@v4
18+
uses: actions/checkout@v5
1919

2020
- name: Set up Python
21-
uses: actions/setup-python@v5
21+
uses: actions/setup-python@v6
2222
with:
2323
python-version: "3.13"
2424

2525
- name: Install uv
26-
run: |
27-
curl -fsSL https://astral.sh/uv/install.sh | sh
28-
echo "$HOME/.local/bin" >> $GITHUB_PATH
26+
uses: astral-sh/setup-uv@v7
2927

3028
- name: Sync build dependencies
3129
run: uv sync --no-dev --group docs
3230

33-
- name: Deploy documentation
34-
run: uv run mkdocs gh-deploy --force
31+
# - name: Deploy documentation
32+
# run: uv run mkdocs gh-deploy --force

0 commit comments

Comments
 (0)