Skip to content

Commit

Permalink
ci: install missing .NET SDK (#80)
Browse files Browse the repository at this point in the history
disable auto-generation of GitHub Actions workflow
  • Loading branch information
Gh0stWalk3r authored Nov 27, 2023
1 parent 6d28067 commit 6c599aa
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ jobs:
- uses: actions/checkout@v3
with:
fetch-depth: 1
- uses: actions/setup-dotnet@v3
- name: 'Cache: .nuke/temp, ~/.nuget/packages'
uses: actions/cache@v3
with:
Expand All @@ -48,6 +49,7 @@ jobs:
- uses: actions/checkout@v3
with:
fetch-depth: 1
- uses: actions/setup-dotnet@v3
- name: 'Cache: .nuke/temp, ~/.nuget/packages'
uses: actions/cache@v3
with:
Expand All @@ -64,6 +66,7 @@ jobs:
- uses: actions/checkout@v3
with:
fetch-depth: 1
- uses: actions/setup-dotnet@v3
- name: 'Cache: .nuke/temp, ~/.nuget/packages'
uses: actions/cache@v3
with:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ jobs:
- uses: actions/checkout@v3
with:
fetch-depth: 1
- uses: actions/setup-dotnet@v3
- name: 'Cache: .nuke/temp, ~/.nuget/packages'
uses: actions/cache@v3
with:
Expand Down
2 changes: 2 additions & 0 deletions src/build/FlashOWare.Tool.Build/Build.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,15 @@
GitHubActionsImage.MacOs12,
GitHubActionsImage.Ubuntu2204,
GitHubActionsImage.WindowsServer2022,
AutoGenerate = false,
OnPushBranches = new[] { "main" },
OnPullRequestBranches = new[] { "main" },
FetchDepth = 1,
InvokedTargets = new[] { nameof(Test), nameof(Pack) })]
[GitHubActions(
"publish",
GitHubActionsImage.Ubuntu2204,
AutoGenerate = false,
OnPushBranches = new[] { "publish" },
FetchDepth = 1,
InvokedTargets = new[] { nameof(Publish) },
Expand Down

0 comments on commit 6c599aa

Please sign in to comment.