mirror of
https://github.com/Ellpeck/MLEM.git
synced 2024-11-22 04:53:29 +01:00
ci: don't push on pull request
This commit is contained in:
parent
b49ac1d053
commit
1a06bcc7fd
1 changed files with 19 additions and 16 deletions
|
@ -15,7 +15,7 @@ Task("Prepare").Does(() => {
|
|||
|
||||
if (branch != "release") {
|
||||
var buildNum = EnvironmentVariable("CI_PIPELINE_NUMBER");
|
||||
if (buildNum != null)
|
||||
if (!string.IsNullOrEmpty(buildNum))
|
||||
version += "-ci." + buildNum;
|
||||
}
|
||||
|
||||
|
@ -49,7 +49,10 @@ Task("Pack").IsDependentOn("Test").Does(() => {
|
|||
DotNetPack("MLEM.FNA.sln", settings);
|
||||
});
|
||||
|
||||
Task("Push").WithCriteria(branch == "main" || branch == "release").IsDependentOn("Pack").Does(() => {
|
||||
Task("Push")
|
||||
.WithCriteria(branch == "main" || branch == "release", "Not on main or release branch")
|
||||
.WithCriteria(string.IsNullOrEmpty(EnvironmentVariable("CI_COMMIT_PULL_REQUEST")), "On pull request")
|
||||
.IsDependentOn("Pack").Does(() => {
|
||||
DotNetNuGetPushSettings settings;
|
||||
if (branch == "release") {
|
||||
settings = new DotNetNuGetPushSettings {
|
||||
|
|
Loading…
Reference in a new issue