RP2040 uploaded is now async and added progress bar to WinForms test UI. #46
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: cross-platform | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v1 | |
with: | |
dotnet-version: '7.0' | |
- name: Run build script | |
run: pwsh scripts/Build-Release.ps1 -Verbose | |
- name: Upload test artifact | |
uses: actions/upload-artifact@v2 | |
with: | |
name: test-release | |
path: release/*.zip |