Fixed 'added dispose' since.... #9
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build | |
on: [push] | |
jobs: | |
build: | |
runs-on: macos-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
with: | |
ref: CrossOS | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v1 | |
with: | |
dotnet-version: '7.0' | |
- name: Run Restore-Dependencies script | |
run: pwsh -Command "Start-Process pwsh -ArgumentList '-File','$PWD/restore/Restore-Dependencies.ps1','-Verbose' -WorkingDirectory $PWD/restore" | |
- name: Run Build-Release | |
run: pwsh scripts/Build-Release.ps1 -Verbose | |
- name: Upload test artifact | |
uses: actions/upload-artifact@v2 | |
with: | |
name: test-release | |
path: release/*.zip |