From 4360f9ff587e94033f479205b7e5e3236b5c63e9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adrian=20Preu=C3=9F?= <1371300+Bizarrus@users.noreply.github.com> Date: Tue, 10 Sep 2024 11:14:17 +0200 Subject: [PATCH] Update documentation.yml --- .github/workflows/documentation.yml | 21 --------------------- 1 file changed, 21 deletions(-) diff --git a/.github/workflows/documentation.yml b/.github/workflows/documentation.yml index 3888781..ee67773 100644 --- a/.github/workflows/documentation.yml +++ b/.github/workflows/documentation.yml @@ -19,24 +19,3 @@ jobs: run: | git clone https://github.com/fruithost/Panel.git ./src/ git clone https://github.com/fruithost/Documentation.wiki.git ./wiki/ - - - name: Generate HTML from Markdown - uses: ldeluigi/markdown-docs@latest - with: - src: ./src/ - dst: ./wiki/ - title: fruithost - language: en - icon: library - primary-color: indigo - secondary-color: indigo - hide-repository: false - - - name: Commit changes - if: github.event_name == 'push' - run: | - git config --global user.name "${{ env.CI_COMMIT_AUTHOR }}" - git config --global user.email "fruithost@users.noreply.github.com" - cd ./wiki/ - git add . - git diff-index --quiet HEAD || git commit -m "${{ env.CI_COMMIT_MESSAGE }}" && git push