Skip to content

Commit b5fe9d1

Browse files
committed
fix CI changes
1 parent 55ab8b0 commit b5fe9d1

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

.config/.readthedocs.yaml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,12 @@ build:
1717
curl -LsSf https://astral.sh/uv/install.sh | sh
1818
build:
1919
html:
20-
- ${HOME}/.local/bin/uvx nox -s docs-build
20+
- >-
21+
${HOME}/.local/bin/uv sync
22+
--package cli-gen
23+
--all-groups
24+
--reinstall-package cli-gen
25+
- ${HOME}/.local/bin/uv run mkdocs build --config-file docs/mkdocs.yml
2126
post_build:
2227
- mkdir -p $READTHEDOCS_OUTPUT/html/
2328
- mv docs/site/* $READTHEDOCS_OUTPUT/html

.github/workflows/binary-builds.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,11 +102,12 @@ jobs:
102102
persist-credentials: false
103103

104104
- name: Setup Rust
105+
shell: bash
105106
env:
106107
RS_TARGET: ${{ matrix.target }}
107108
run: |-
108109
rustup update stable --no-self-update
109-
rustup target add $RS_TARGET
110+
rustup target add ${RS_TARGET}
110111
111112
- name: Install cargo-binstall
112113
if: matrix.cross

.github/workflows/node-js-packaging.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -293,7 +293,7 @@ jobs:
293293
with:
294294
image: ${{ steps.docker.outputs.IMAGE }}
295295
options: >- # zizmor: ignore[template-injection]
296-
v ${{ github.workspace }}:${{ github.workspace }}
296+
-v ${{ github.workspace }}:${{ github.workspace }}
297297
-w ${{ github.workspace }}
298298
--platform ${{ steps.docker.outputs.PLATFORM }}
299299
run: yarn test

0 commit comments

Comments
 (0)