File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -120,7 +120,7 @@ class Build : NukeBuild
120120 . TriggeredBy ( Publish )
121121 . Requires ( ( ) => GhToken )
122122 . Executes ( ( ) => Gh . Invoke (
123- arguments : $ "release create ' { OctoVersionInfo . FullSemVer } ' --generate-notes",
123+ arguments : $ "release create { OctoVersionInfo . FullSemVer } --generate-notes",
124124 environmentVariables : EnvironmentInfo . Variables
125125 . ToDictionary ( x => x . Key , x => x . Value )
126126 . SetKeyValue ( "GH_TOKEN" , GhToken ) . AsReadOnly ( ) ) ) ;
@@ -131,8 +131,8 @@ class Build : NukeBuild
131131 . OnlyWhenStatic ( ( ) => ! IsPreRelease )
132132 . Executes ( ( ) =>
133133 {
134- Git . Invoke ( $ "tag --force ' v{ OctoVersionInfo . Major } .{ OctoVersionInfo . Minor } ' ") ;
135- Git . Invoke ( $ "tag --force ' v{ OctoVersionInfo . Major } ' ") ;
134+ Git . Invoke ( $ "tag --force v{ OctoVersionInfo . Major } .{ OctoVersionInfo . Minor } ") ;
135+ Git . Invoke ( $ "tag --force v{ OctoVersionInfo . Major } ") ;
136136 Git . Invoke ( "push origin --tags --force" ) ;
137137 } ) ;
138138}
You can’t perform that action at this time.
0 commit comments