From 2c822fd776f28a2d1c6feced93a260e39b328fbf Mon Sep 17 00:00:00 2001 From: Keith Cirkel Date: Wed, 1 Jan 2025 00:42:36 +0000 Subject: [PATCH] (pages): ensure cargo docs are placed in _site --- .github/workflows/pages.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pages.yml b/.github/workflows/pages.yml index ac0b413..70c3bfd 100644 --- a/.github/workflows/pages.yml +++ b/.github/workflows/pages.yml @@ -33,8 +33,8 @@ jobs: env: NODE_ENV: production - run: cargo doc --all-features - - run: mkdir -p ./website/doc/internal/ - - run: cp -rf ./target/doc/* ./website/doc/internal/ + - run: mkdir -p ./website/_site/doc/internal/ + - run: cp -rf ./target/doc/* ./website/_site/doc/internal/ - uses: actions/upload-pages-artifact@v3 with: path: "website/_site"