Skip to content

Commit 45aa36c

Browse files
Merge pull request #3057 from blacklanternsecurity/fix-docs-pipeline
Fix docs pipeline, again
2 parents 3534205 + 6b44199 commit 45aa36c

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/docs_updater.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@ jobs:
2020
- name: Install uv
2121
uses: astral-sh/setup-uv@v7
2222
- name: Install dependencies
23-
run: uv sync --group dev
23+
run: uv sync --frozen --group dev
2424
- name: Generate docs
2525
run: |
26-
uv run bbot/scripts/docs.py
26+
uv run --no-sync bbot/scripts/docs.py
2727
- name: Create or Update Pull Request
2828
uses: peter-evans/create-pull-request@v8
2929
with:

.github/workflows/tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,7 @@ jobs:
241241
- name: Install uv
242242
uses: astral-sh/setup-uv@v7
243243
- name: Install dependencies
244-
run: uv sync --frozen --only-group docs
244+
run: uv sync --frozen --group docs
245245
- name: Configure Git
246246
run: |
247247
git config user.name github-actions
@@ -255,11 +255,11 @@ jobs:
255255
- name: Generate docs (stable branch)
256256
if: github.ref == 'refs/heads/stable'
257257
run: |
258-
uv run mike deploy Stable
258+
uv run --no-sync mike deploy Stable
259259
- name: Generate docs (dev branch)
260260
if: github.ref == 'refs/heads/dev'
261261
run: |
262-
uv run mike deploy Dev
262+
uv run --no-sync mike deploy Dev
263263
- name: Publish docs
264264
run: |
265265
git switch gh-pages

0 commit comments

Comments
 (0)