From 44be685119124467eeab4bb636693eb6f809af8b Mon Sep 17 00:00:00 2001
From: l0r1s <contact@lorismoulin.com>
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 a40eee4..d22fb55 100644
--- a/.github/workflows/documentation.yml
+++ b/.github/workflows/documentation.yml
@@ -35,13 +35,15 @@ jobs:
           cargo doc --no-deps
           echo "<meta http-equiv=\"refresh\" content=\"0; url=configuration\">" > 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
-- 
GitLab