Skip to content

Commit

Permalink
Bug fix on tag push
Browse files Browse the repository at this point in the history
  • Loading branch information
BlythMeister committed Sep 21, 2017
1 parent 963cb43 commit 0863610
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 4 deletions.
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version: '3.6.2.{build}'
version: '3.6.3.{build}'
environment:
access_token:
secure: cBjCd4Q0pww6q7jKVN/LDBSHTMzmB+77vLQ9j4yq/KneIQi74rl6TgB4+5X7sd9w
Expand Down
4 changes: 3 additions & 1 deletion build.fsx
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ Target "Publish-Release" (fun _ ->

enableProcessTracing <- false
let authKey = environVar "access_token"
directRunGitCommandAndFail currentDirectory (sprintf "remote set-url origin https://%s:[email protected]/BlythMeister/Gallifrey.Releases.git" authKey)
directRunGitCommandAndFail currentDirectory (sprintf "remote set-url origin https://%s:[email protected]/BlythMeister/Gallifrey.git" authKey)
directRunGitCommandAndFail releasesRepo (sprintf "remote set-url origin https://%s:[email protected]/BlythMeister/Gallifrey.Releases.git" authKey)
directRunGitCommandAndFail releasesRepo "config --global user.email \"[email protected]\""
directRunGitCommandAndFail releasesRepo "config --global user.name \"Gallifrey Auto Publish\""
Expand All @@ -120,6 +120,8 @@ Target "Publish-Release" (fun _ ->
match isStable, releaseType with
| true, "Alpha"
| true, "Beta" -> CleanDir destinationAppFilesRoot
StageAll releasesRepo
Commit releasesRepo (sprintf "Clean %s - Due to Stable Release" releaseType)
| _, _ -> ensureDirectory destinationAppFilesRoot

let destinationAppFiles = destinationAppFilesRoot @@ (sprintf "Gallifrey.UI.Modern.%s_%s" releaseType (versionNumber.Replace(".","_")))
Expand Down
7 changes: 7 additions & 0 deletions src/Gallifrey.UI.Modern/ChangeLog.xml
Original file line number Diff line number Diff line change
Expand Up @@ -211,5 +211,12 @@
<Other>Deployment setup changes</Other>
</Others>
</Version>
<Version Number="3.6.3.0">
<Features />
<Bugs />
<Others>
<Other>Deployment setup changes</Other>
</Others>
</Version>
</Versions>

2 changes: 0 additions & 2 deletions src/Gallifrey.sln
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,6 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Build", "Build", "{11E6F1E6
..\appveyor.yml = ..\appveyor.yml
..\build.cmd = ..\build.cmd
..\build.fsx = ..\build.fsx
..\Build.ps1 = ..\Build.ps1
..\CopyOutputToReleasesRepo.ps1 = ..\CopyOutputToReleasesRepo.ps1
EndProjectSection
EndProject
Global
Expand Down

0 comments on commit 0863610

Please sign in to comment.