From 45aec08d04eeac5465ffef2934745d4170f5f592 Mon Sep 17 00:00:00 2001 From: Nate Scherer <376408+natescherer@users.noreply.github.com> Date: Fri, 27 Oct 2023 04:24:01 -0400 Subject: [PATCH] Add pages deployment --- .github/workflows/Test-Results-To-Pages.yml | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/.github/workflows/Test-Results-To-Pages.yml b/.github/workflows/Test-Results-To-Pages.yml index b54de51..72ec24c 100644 --- a/.github/workflows/Test-Results-To-Pages.yml +++ b/.github/workflows/Test-Results-To-Pages.yml @@ -31,6 +31,8 @@ jobs: shell: powershell - os: macos-latest shell: powershell + - os: windows-latest + shell: powershell steps: - name: Checkout uses: actions/checkout@v3 @@ -53,4 +55,18 @@ jobs: uses: actions/upload-artifact@v3 with: name: ${{ runner.os }}_${{ matrix.shell }} - path: ${{ steps.pester.outputs.pages_path }} \ No newline at end of file + path: ${{ steps.pester.outputs.pages_path }} + Deploy: + environment: + name: github-pages + url: ${{ steps.deployment.outputs.page_url }} + runs-on: ubuntu-latest + needs: Test + steps: + - name: Download Artifacts + uses: actions/download-artifact@v3 + - name: Upload Combined Pages Artifact + uses: actions/upload-pages-artifact@v2 + - name: Deploy to GitHub Pages + id: deployment + uses: actions/deploy-pages@v2 \ No newline at end of file