Shows the installation process on pip #5
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: .NET Core Desktop | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
build: | |
strategy: | |
matrix: | |
configuration: [Debug, Release] | |
runs-on: windows-latest | |
env: | |
Solution_Name: Lithicsoft Trainer Studio.sln | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Install .NET Core | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: 8.0.x | |
- name: Setup MSBuild.exe | |
uses: microsoft/setup-msbuild@v2 | |
- name: Execute unit tests | |
run: dotnet test | |
- name: Restore the application | |
run: msbuild $env:Solution_Name /t:Restore /p:Configuration=$env:Configuration | |
env: | |
Configuration: ${{ matrix.configuration }} | |
# Package application into a zip file | |
- name: Package application | |
run: | | |
$outputDir = "$env:Solution_Name\bin\$env:Configuration\netcoreapp3.1" | |
$zipFilePath = "$env:Solution_Name\bin\$env:Configuration\app.zip" | |
Compress-Archive -Path $outputDir -DestinationPath $zipFilePath -Force | |
# Upload the zip package | |
- name: Upload build artifacts | |
uses: actions/upload-artifact@v3 | |
with: | |
name: App Zip Package | |
path: $zipFilePath |