We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0b2774b commit fb194e8Copy full SHA for fb194e8
2 files changed
.github/workflows/build.yml
@@ -14,7 +14,7 @@ jobs:
14
strategy:
15
fail-fast: false
16
matrix:
17
- os: [windows-latest, ubuntu-latest, macos-latest]
+ os: [windows-2019, ubuntu-latest, macos-latest]
18
steps:
19
- name: Get the sources
20
uses: actions/checkout@v2
build.cake
@@ -236,7 +236,10 @@ Task("Publish-NuGet")
236
237
Task("Push-GitHub-Packages")
238
.IsDependentOn("Package")
239
- .WithCriteria(GitHubActions.IsRunningOnGitHubActions && !GitHubActions.Environment.PullRequest.IsPullRequest)
+ .WithCriteria(
240
+ GitHubActions.IsRunningOnGitHubActions &&
241
+ !GitHubActions.Environment.PullRequest.IsPullRequest &&
242
+ IsRunningOnWindows())
243
.Does(() => {
244
245
// Resolve the API key.
0 commit comments