diff --git a/.github/workflows/continuous.yml b/.github/workflows/continuous.yml index 982b288..5dd64b6 100644 --- a/.github/workflows/continuous.yml +++ b/.github/workflows/continuous.yml @@ -1,19 +1,3 @@ -# ------------------------------------------------------------------------------ -# -# -# This code was generated. -# -# - To turn off auto-generation set: -# -# [GitHubActions (AutoGenerate = false)] -# -# - To trigger manual generation invoke: -# -# nuke --generate-configuration GitHubActions_continuous --host GitHubActions -# -# -# ------------------------------------------------------------------------------ - name: continuous on: @@ -40,6 +24,10 @@ jobs: - uses: actions/checkout@v6 with: fetch-depth: 0 + - name: 'Setup: .NET SDK' + uses: actions/setup-dotnet@v5 + with: + dotnet-version: '10.0.x' - name: 'Cache: .nuke/temp, ~/.nuget/packages' uses: actions/cache@v5 with: diff --git a/build/Build.cs b/build/Build.cs index bb6bd9b..b4889d3 100644 --- a/build/Build.cs +++ b/build/Build.cs @@ -20,6 +20,7 @@ [GitHubActions( "continuous", GitHubActionsImage.UbuntuLatest, + AutoGenerate = false, OnPushBranches = ["main", "develop"], OnPushTags = ["v*"], OnPullRequestBranches = ["main", "develop"],