Skip to content

Commit 31dfdc4

Browse files
committed
CI: Consistently use 'zephyr-lang-rust' to match the repo name
This should let the publish job run. Signed-off-by: David Brown <[email protected]>
1 parent ddd3e80 commit 31dfdc4

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/docs.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- name: Checkout
2121
uses: actions/checkout@v4
2222
with:
23-
path: zephyr-rust-lang
23+
path: zephyr-lang-rust
2424

2525
- name: Set up Python
2626
uses: actions/setup-python@v5
@@ -30,7 +30,7 @@ jobs:
3030
- name: Setup Zephyr project
3131
uses: zephyrproject-rtos/action-zephyr-setup@v1
3232
with:
33-
app-path: zephyr-rust-lang
33+
app-path: zephyr-lang-rust
3434
manifest-file-name: ci-manifest.yml
3535
toolchains: arm-zephyr-eabi:riscv64-zephyr-elf
3636

@@ -41,7 +41,7 @@ jobs:
4141
rustup target add thumbv7m-none-eabi
4242
4343
- name: Build Rust documentation
44-
working-directory: zephyr-rust-lang
44+
working-directory: zephyr-lang-rust
4545
run: |
4646
# Note that the above build doesn't set Zephyrbase, so we'll need to do that here.
4747
west build -t rustdoc -b nrf52840dk/nrf52840 docgen
@@ -50,7 +50,7 @@ jobs:
5050
cp docs/top-index.html rustdocs/index.html
5151
5252
- name: Build build documentation
53-
working-directory: zephyr-rust-lang
53+
working-directory: zephyr-lang-rust
5454
run: |
5555
cd zephyr-build
5656
cargo doc
@@ -60,7 +60,7 @@ jobs:
6060
uses: actions/upload-artifact@v4
6161
with:
6262
name: rustdocs
63-
path: zephyr-rust-lang/rustdocs
63+
path: zephyr-lang-rust/rustdocs
6464

6565
doc-publish:
6666
name: Publish Rust Documentation
@@ -69,7 +69,7 @@ jobs:
6969
if: |
7070
github.event.workflow_run.event == 'pull_request' &&
7171
github.event.workflow_run.conclusion == 'success' &&
72-
github.repository == 'zephyrproject-rtos/zephyr-rust-lang'
72+
github.repository == 'zephyrproject-rtos/zephyr-lang-rust'
7373
7474
steps:
7575
- name: Download documentation artifact

0 commit comments

Comments
 (0)