@@ -68,7 +68,7 @@ Target "VersionUpdate" (fun _ ->
68
68
let changeLog = XDocument.Load( changeLogPath)
69
69
70
70
let versionLogs = changeLog
71
- |> fun changelog -> changelog.Descendants( XName.Get( " Version" , " https://releases.gallifreyapp.co .uk/ChangeLog" ))
71
+ |> fun changelog -> changelog.Descendants( XName.Get( " Version" , " https://gallifrey- releases.blyth.me .uk/ChangeLog" ))
72
72
|> Seq.filter( fun x -> x.Attribute( XName.Get( " Number" )) .Value = " 0.0.0.0" || x.Attribute( XName.Get( " Number" )) .Value = versionNumber)
73
73
74
74
if versionLogs |> Seq.isEmpty then failwithf " No change log for version 0.0.0.0 or %s " versionNumber
@@ -143,7 +143,7 @@ Target "Publish-ReleaseRepo" (fun _ ->
143
143
enableProcessTracing <- false
144
144
directRunGitCommandAndFail currentDirectory
( sprintf
" remote set-url origin https://%s :[email protected] /BlythMeister/Gallifrey.git" githubApiKey
)
145
145
directRunGitCommandAndFail releasesRepo
( sprintf
" remote set-url origin https://%s :[email protected] /BlythMeister/Gallifrey.Releases.git" githubApiKey
)
146
- directRunGitCommandAndFail releasesRepo " config --global user.email \" publish@gallifreyapp.co .uk\" "
146
+ directRunGitCommandAndFail releasesRepo " config --global user.email \" publish@gallifrey.blyth.me .uk\" "
147
147
directRunGitCommandAndFail releasesRepo " config --global user.name \" Gallifrey Auto Publish\" "
148
148
enableProcessTracing <- true
149
149
@@ -191,13 +191,13 @@ Target "Publish-ReleaseNotes" (fun _ ->
191
191
let releaseVersion = if isStable then baseVersion else versionNumber
192
192
193
193
let versionLog = XDocument.Load( changeLogPath)
194
- |> fun changelog -> changelog.Descendants( XName.Get( " Version" , " https://releases.gallifreyapp.co .uk/ChangeLog" ))
194
+ |> fun changelog -> changelog.Descendants( XName.Get( " Version" , " https://gallifrey- releases.blyth.me .uk/ChangeLog" ))
195
195
|> Seq.filter( fun x -> x.Attribute( XName.Get( " Number" )) .Value.StartsWith( releaseVersion))
196
196
|> Seq.head
197
197
198
- let features = versionLog.Descendants( XName.Get( " Feature" , " https://releases.gallifreyapp.co .uk/ChangeLog" )) |> Seq.map( fun x -> sprintf " * %s " x.Value) |> Seq.toList
199
- let bugs = versionLog.Descendants( XName.Get( " Bug" , " https://releases.gallifreyapp.co .uk/ChangeLog" )) |> Seq.map( fun x -> sprintf " * %s " x.Value) |> Seq.toList
200
- let others = versionLog.Descendants( XName.Get( " Other" , " https://releases.gallifreyapp.co .uk/ChangeLog" )) |> Seq.map( fun x -> sprintf " * %s " x.Value) |> Seq.toList
198
+ let features = versionLog.Descendants( XName.Get( " Feature" , " https://gallifrey- releases.blyth.me .uk/ChangeLog" )) |> Seq.map( fun x -> sprintf " * %s " x.Value) |> Seq.toList
199
+ let bugs = versionLog.Descendants( XName.Get( " Bug" , " https://gallifrey- releases.blyth.me .uk/ChangeLog" )) |> Seq.map( fun x -> sprintf " * %s " x.Value) |> Seq.toList
200
+ let others = versionLog.Descendants( XName.Get( " Other" , " https://gallifrey- releases.blyth.me .uk/ChangeLog" )) |> Seq.map( fun x -> sprintf " * %s " x.Value) |> Seq.toList
201
201
let versionName = versionLog.Attribute( XName.Get( " Name" ))
202
202
203
203
let releaseNotes = [
@@ -235,7 +235,7 @@ Target "Publish-ReleaseNotes" (fun _ ->
235
235
|> fun x -> x.AppendLine( " " )
236
236
|> fun x -> x.AppendLine( String.Join( " \n " , releaseNotes) .Replace( " # " , " #### " ))
237
237
|> fun x -> x.AppendLine( " " )
238
- |> fun x -> x.AppendLine( " To download the latest version of the app head to <https://www.gallifreyapp.co .uk/downloads/stable>" )
238
+ |> fun x -> x.AppendLine( " To download the latest version of the app head to <https://gallifrey.blyth.me .uk/downloads/stable>" )
239
239
|> fun x -> File.WriteAllText( releasesNewsFile, x.ToString())
240
240
241
241
checkoutBranch currentDirectory branchName
0 commit comments