-
-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
963cb43
commit 0863610
Showing
4 changed files
with
11 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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\"" | ||
|
@@ -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(".","_"))) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters