Skip to content

XMLTV: remove TMSId (QOL) #28

XMLTV: remove TMSId (QOL)

XMLTV: remove TMSId (QOL) #28

name: Windows Release Builds
on:
push:
branches:
- main
jobs:
build-windows:
runs-on: windows-latest
steps:
- uses: "actions/checkout@v2"
with:
fetch-depth: 0
- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: 10.0.x
- name: Restore Dependencies
run: dotnet restore
working-directory: ./Encode2It
- name: Build Windows Executable
run: dotnet build -c Release --no-restore --self-contained
working-directory: ./Encode2It
- uses: "actions/upload-artifact@v4"
with:
name: Encode2It-Windows-Release-x64
path: ${{github.workspace}}/Encode2It/bin/Release/net10.0/**
if-no-files-found: error