Skip to content

If there isn't any star ratings, just respond with 0 stars #29

If there isn't any star ratings, just respond with 0 stars

If there isn't any star ratings, just respond with 0 stars #29

Workflow file for this run

name: Windows Debug 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 Debug --no-restore --self-contained
working-directory: ./Encode2It
- uses: "actions/upload-artifact@v4"
with:
name: Encode2It-Windows-Debug-x64
path: ${{github.workspace}}/Encode2It/bin/Debug/net10.0/**
if-no-files-found: error