Skip to content

DRAFT: Feature/v5 [wip] #446

DRAFT: Feature/v5 [wip]

DRAFT: Feature/v5 [wip] #446

Workflow file for this run

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: .\\src\\TEdit.sln
Publish_Path: .\\src\\TEdit\\bin\\Release\\net462\\publish
File_Name: TEdit_${{github.ref_name}}
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
# Install the .NET Core workload
- name: Install .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: 7.0.x
# Add MSBuild to the PATH: https://github.com/microsoft/setup-msbuild
- name: Setup MSBuild.exe
uses: microsoft/[email protected]
# Restore the application to populate the obj folder with RuntimeIdentifiers
- name: Restore the application
run: msbuild $env:Solution_Name /t:Restore /p:Configuration=$env:Configuration
env:
Configuration: ${{ matrix.configuration }}
- name: Publish binary files
shell: pwsh
run: |
dotnet publish -c Release $env:Solution_Name
# Create the app package by building and packaging the Windows Application Packaging project
- name: Create the app package
shell: pwsh
run: |
Copy-Item -Path $env:Publish_Path -Destination ".\release\TEdit_main\" -Recurse -Force -Verbose
Copy-Item -Path ".\schematics" -Destination ".\release" -Recurse -Verbose
- uses: actions/upload-artifact@v2
if: github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags/')
with:
name: TEdit-zip
path: .\release
if-no-files-found: error