Skip to content

Commit

Permalink
Merge pull request #48 from natescherer/feature/test-results-in-gh-pages
Browse files Browse the repository at this point in the history
Add pages deployment
  • Loading branch information
natescherer authored Oct 27, 2023
2 parents a3c3261 + 45aec08 commit 8adf241
Showing 1 changed file with 17 additions and 1 deletion.
18 changes: 17 additions & 1 deletion .github/workflows/Test-Results-To-Pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,8 @@ jobs:
shell: powershell
- os: macos-latest
shell: powershell
- os: windows-latest
shell: powershell
steps:
- name: Checkout
uses: actions/checkout@v3
Expand All @@ -53,4 +55,18 @@ jobs:
uses: actions/upload-artifact@v3
with:
name: ${{ runner.os }}_${{ matrix.shell }}
path: ${{ steps.pester.outputs.pages_path }}
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

0 comments on commit 8adf241

Please sign in to comment.