From 44be685119124467eeab4bb636693eb6f809af8b Mon Sep 17 00:00:00 2001 From: l0r1s Date: Tue, 26 Sep 2023 16:25:28 +0300 Subject: [PATCH] chore: fix pipeline docs --- .github/workflows/documentation.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/documentation.yml b/.github/workflows/documentation.yml index a40eee4ad..d22fb55ce 100644 --- a/.github/workflows/documentation.yml +++ b/.github/workflows/documentation.yml @@ -35,13 +35,15 @@ jobs: cargo doc --no-deps echo "" > target/doc/index.html + + - name: Move docs run: | mkdir -p ./doc mv ./target/doc/* ./doc git config user.email "github-action@users.noreply.github.com" git config user.name "GitHub Action" - git config user.password ${{ secrets.GH_PAGES_TOKEN }} + git config user.password "${{ secrets.GH_PAGES_TOKEN }}" git checkout --orphan gh-pages mkdir to_delete shopt -s extglob