Skip to content

Commit c7b082e

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

File tree

1 file changed

+6
-7
lines changed

1 file changed

+6
-7
lines changed

.github/workflows/gh-pages.yml

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ on:
44
push:
55
branches:
66
- main
7+
- fix/docs
78

89
permissions:
910
contents: write
@@ -15,20 +16,18 @@ jobs:
1516

1617
steps:
1718
- name: Checkout
18-
uses: actions/checkout@v4
19+
uses: actions/checkout@v5
1920

2021
- name: Set up Python
21-
uses: actions/setup-python@v5
22+
uses: actions/setup-python@v6
2223
with:
2324
python-version: "3.13"
2425

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

3029
- name: Sync build dependencies
3130
run: uv sync --no-dev --group docs
3231

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

0 commit comments

Comments
 (0)