8000
Skip to content

add line breaks to Operating System Support in README.md #9

add line breaks to Operating System Support in README.md

add line breaks to Operating System Support in README.md #9

Workflow file for this run

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