From c123c10250aa31977cb58f78787169b5753b2f6f Mon Sep 17 00:00:00 2001 From: Anthony Watherston Date: Fri, 12 Apr 2024 11:49:17 +1000 Subject: [PATCH] Update publish-docs.yaml --- .github/workflows/publish-docs.yaml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/publish-docs.yaml b/.github/workflows/publish-docs.yaml index 107610b6..e0c7b371 100644 --- a/.github/workflows/publish-docs.yaml +++ b/.github/workflows/publish-docs.yaml @@ -12,9 +12,15 @@ jobs: deploy: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - uses: actions/setup-python@v2 with: python-version: 3.x - run: pip install mkdocs mkdocs-material + - name: ConvertAlerts + shell: pwsh + run: | + mkdir tmp + ./Scripts/Operations/Convert-MarkdownGitHubAlerts.ps1 -Path ./Docs -OutputPath ./tmp + Move-Item -Path ./tmp/* -Destination ./Docs -Force - run: mkdocs gh-deploy --force --clean --verbose