From 1dd08ca722d4a4074acf27213c47c0fed9247273 Mon Sep 17 00:00:00 2001 From: Aleks <152979255+a1eksb@users.noreply.github.com> Date: Fri, 19 Jul 2024 16:16:06 +0200 Subject: [PATCH] [ DOC ]: Modify the github setup description --- docs/docs/docs/setup_github.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/docs/docs/setup_github.md b/docs/docs/docs/setup_github.md index 5e258ba..422f76c 100644 --- a/docs/docs/docs/setup_github.md +++ b/docs/docs/docs/setup_github.md @@ -59,13 +59,13 @@ nav: steps: - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v3 - name: Install curl - run: sudo apt-get update && sudo apt-get install -y curl + run: sudo apt-get update && sudo apt-get install -y curl - name: Deploying the docs - run: | + run: | echo "Deploying the docs" curl --request POST ${{ secrets.ACINT_URL }} -H "Content-Type: application/json" -d "{\"action\": \"${{ secrets.ACINT_ACTION }}\", \"token\": \"${{ secrets.ACINT_TOKEN }}\"}" ```