Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 11 additions & 1 deletion .github/workflows/pr-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,22 @@ jobs:
name: Build Logs
path: .\BuildOutput\BinLogs

- name: Publish Artifacts
- name: Publish NuGET Packages
uses: actions/upload-artifact@v1
with:
name: Nuget Packages
path: .\BuildOutput\Nuget

- name: Run Tests
run: .\Invoke-UnitTests.ps1

- name: Publish test logs
if: always()
uses: actions/upload-artifact@v1
with:
name: Test Logs
path: .\BuildOutput\Test-Results

build-docs:
runs-on: windows-latest
steps:
Expand Down
10 changes: 10 additions & 0 deletions .github/workflows/release-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,16 @@ jobs:
name: Nuget Packages
path: .\BuildOutput\Nuget

- name: Run Tests
run: .\Invoke-UnitTests.ps1

- name: Publish test logs
if: always()
uses: actions/upload-artifact@v1
with:
name: Test Logs
path: .\BuildOutput\Test-Results

- name: Commit Docs
env:
docspush_email: 32618965+cibuild-telliam@users.noreply.github.com
Expand Down