Rename TEdit.Desktop to TEdit5 linux compat #54
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: .NET Core Desktop | |
on: | |
push: | |
tags: | |
- "*" | |
jobs: | |
build: | |
strategy: | |
matrix: | |
configuration: [Release] | |
runs-on: windows-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
# Install the .NET Core workload | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: "8.0.x" | |
# Create the app package by building and packaging the Windows Application Packaging project | |
- name: Create the app package | |
shell: pwsh | |
run: ./build.ps1 -Version ${{ github.ref_name }} | |
- name: Create Release | |
uses: ncipollo/release-action@v1 | |
with: | |
artifacts: "release/TEdit*.zip" | |
generateReleaseNotes: true |