forked from YARC-Official/YARG-BleedingEdge
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request YARC-Official#8 from Pantotone/use-commit-count-in…
…stead-of-hash feat(nightly): use commit count instead of commit hash
- Loading branch information
Showing
4 changed files
with
35 additions
and
29 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
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 |
---|---|---|
@@ -1,8 +1,8 @@ | ||
export const GITHUB_API_ROOT = "https://api.github.com/"; | ||
|
||
export const YARG_ORGANIZATIONNAME = process.env.REPOSITORY_AUTHOR; | ||
export const YARG_GAMEREPOSITORY = process.env.REPOSITORY_NAME; | ||
export const YARG_DEVBRANCH = process.env.REPOSITORY_BRANCH; | ||
export const YARG_ORGANIZATIONNAME = process.env.REPOSITORY_AUTHOR || "YARC-Official"; | ||
export const YARG_GAMEREPOSITORY = process.env.REPOSITORY_NAME || "YARG"; | ||
export const YARG_DEVBRANCH = process.env.REPOSITORY_BRANCH || "dev"; | ||
|
||
export const BLEEDINGEDGE_REPOSITORYAUTHOR = process.env.BLEEDINGEDGE_REPOSITORYAUTHOR || YARG_ORGANIZATIONNAME || "YARC-Official"; | ||
export const BLEEDINGEDGE_REPOSITORYNAME = process.env.BLEEDINGEDGE_REPOSITORYNAME || "YARG-BleedingEdge"; |