Skip to content

Commit 41684b5

Browse files
Rename artifact output folder
1 parent 158c631 commit 41684b5

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,4 +57,4 @@ jobs:
5757
with:
5858
if-no-files-found: warn
5959
name: package
60-
path: artifacts/nuget/**/*
60+
path: artifact/nuget/**/*

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,4 +25,4 @@ Thumbs.db
2525

2626
#cake
2727
.cake/
28-
/artifacts/*
28+
/artifact/*

build.cake

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ var buildVersion = MinVer(s => s.WithTagPrefix("v").WithDefaultPreReleasePhase("
77
Task("clean")
88
.Does(() =>
99
{
10-
CleanDirectories("./artifacts/**");
10+
CleanDirectories("./artifact/**");
1111
CleanDirectories("./**/^{bin,obj}");
1212
});
1313

@@ -67,7 +67,7 @@ Task("pack")
6767
Configuration = "Release",
6868
NoRestore = true,
6969
NoBuild = true,
70-
OutputDirectory = "./artifacts/nuget",
70+
OutputDirectory = "./artifact/nuget",
7171
MSBuildSettings = new DotNetCoreMSBuildSettings()
7272
.WithProperty("Version", buildVersion.Version)
7373
.WithProperty("PackageReleaseNotes", releaseNotes)
@@ -98,7 +98,7 @@ Task("push")
9898
ApiKey = apiKey,
9999
};
100100

101-
foreach (var nugetPackageFile in GetFiles("./artifacts/nuget/*.nupkg"))
101+
foreach (var nugetPackageFile in GetFiles("./artifact/nuget/*.nupkg"))
102102
{
103103
DotNetCoreNuGetPush(nugetPackageFile.FullPath, nugetPushSettings);
104104
}

0 commit comments

Comments
 (0)