From 8e43858be167d3e21ee2723a35bf60f0564c7387 Mon Sep 17 00:00:00 2001 From: Keiichi Watanabe Date: Tue, 22 Feb 2022 10:50:47 +0900 Subject: [PATCH] github: Change target directory for cargo-doc As CL:3423291 and CL:3428606 changed the path to store generated GitHub pages contents in, we needed to chage it for cargo-doc as well. BUG=none TEST=check in my local GitHub repo Change-Id: I27ae705c99968c060ede3ee514792d8ac1b7975e Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/crosvm/+/3479038 Reviewed-by: Alexandre Courbot Tested-by: kokoro Commit-Queue: Keiichi Watanabe --- .github/workflows/gh-pages.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/gh-pages.yml b/.github/workflows/gh-pages.yml index 0d017c0ff0..02d9dec18c 100644 --- a/.github/workflows/gh-pages.yml +++ b/.github/workflows/gh-pages.yml @@ -28,7 +28,7 @@ jobs: - name: Run cargo doc run: | git submodule update --init - ./tools/cargo-doc --target-dir ./docs/target/ + ./tools/cargo-doc --target-dir ./docs/target/html/ - name: Deploy uses: peaceiris/actions-gh-pages@v3 with: