File tree Expand file tree Collapse file tree 3 files changed +13
-4
lines changed Expand file tree Collapse file tree 3 files changed +13
-4
lines changed Original file line number Diff line number Diff line change 35
35
run : ./build.cmd ContinousIntegration
36
36
env :
37
37
NugetApiKey : ${{ secrets.NugetApiKey }}
38
+ - uses : actions/upload-artifact@v1
39
+ with :
40
+ name : nuget
41
+ path : artifacts/nuget
Original file line number Diff line number Diff line change
1
+ ignore :
2
+ sha : []
3
+ merge-message-formats : {}
4
+ tag-prefix : ' '
5
+ branches :
6
+ feature :
7
+ increment : Minor
8
+ tag : alpha
Original file line number Diff line number Diff line change @@ -130,7 +130,7 @@ class Build : NukeBuild
130
130
131
131
Target Deploy => _ => _
132
132
. DependsOn ( Pack )
133
- . OnlyWhenStatic ( ( ) => GitRepository . Branch == "refs/heads/ master" )
133
+ . OnlyWhenStatic ( ( ) => GitRepository . Branch == "master" )
134
134
. Requires ( ( ) => NugetApiUrl )
135
135
. Requires ( ( ) => NugetApiKey )
136
136
. Requires ( ( ) => Configuration . Equals ( Configuration . Release ) )
@@ -153,8 +153,5 @@ class Build : NukeBuild
153
153
) ;
154
154
155
155
Target ContinousIntegration => _ => _
156
- . DependsOn ( Clean ) ;
157
-
158
- Target ContinousDeployment => _ => _
159
156
. DependsOn ( Deploy ) ;
160
157
}
You can’t perform that action at this time.
0 commit comments