From e7c23cb9bf31aa5fabc905ac1932d8fab0651318 Mon Sep 17 00:00:00 2001 From: MariaGoretti17 Date: Fri, 10 Jan 2025 12:03:18 +0100 Subject: [PATCH] Update deploy-pipeline.yaml --- .github/workflows/deploy-pipeline.yaml | 24 +++++++++++++++++++++++- 1 file changed, 23 insertions(+), 1 deletion(-) diff --git a/.github/workflows/deploy-pipeline.yaml b/.github/workflows/deploy-pipeline.yaml index 678300fc6..1c6acf5d9 100644 --- a/.github/workflows/deploy-pipeline.yaml +++ b/.github/workflows/deploy-pipeline.yaml @@ -43,4 +43,26 @@ jobs: uses: actions/upload-artifact@v2 with: name: zipped-bundle - path: ${{ github.sha }}.zip \ No newline at end of file + path: ${{ github.sha }}.zip + + documentation: + runs-on: ubuntu-latest + needs: lint + steps: + - name: Checkout code + uses: actions/checkout@v2 + - name: Create docs folder + run: mkdir docs + - name: Convert md to html + uses: docker://pandoc/core:2.9 + with: + args: userguide.md -t html -o docs/index.html + - name: Deploy Pages site + uses: JamesIves/github-pages-deploy-action@4.1.4 + with: + branch: gh-pages + folader: docs + + + +