From 91355788d90baf8f9c74fbf951733c69ff52fad6 Mon Sep 17 00:00:00 2001 From: Enrico Ghiorzi Date: Fri, 31 May 2024 03:34:10 -0400 Subject: [PATCH] Update rust.yml Fix doc path Signed-off-by: Enrico Ghiorzi --- .github/workflows/rust.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 763c857..ac1288a 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -44,10 +44,10 @@ jobs: uses: actions/upload-pages-artifact@v3 with: # Upload docs folder - path: 'docs' + path: 'target/doc' - name: Deploy to GitHub Pages id: deployment uses: actions/deploy-pages@v4 with: - folder: docs # The folder the action should deploy. + folder: target/doc # The folder the action should deploy.