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 + + + +