Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,8 @@ on:
jobs:
build:
name: Build
runs-on: windows-latest
runs-on: ubuntu-latest
steps:
- name: Enable long paths for Git
run: git config --system core.longpaths true
- name: Check out
uses: actions/checkout@v5
- name: Setup .Net
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,16 +41,10 @@ public void GenerateBuildScript(string branchName, string projectName, string do
new Job
{
Name = "Build",
RunsOn = BuildMachines.WindowsLatest,
RunsOn = BuildMachines.UbuntuLatest,

Steps = new List<GithubTask>
{
new GithubTask
{
Name = "Enable long paths for Git",
Run = "git config --system core.longpaths true"
},

new CheckoutTaskV5
{
Name = "Check out"
Expand Down
Loading