2020-01-10 17:15:25 +00:00
|
|
|
sourceUrl = "git@github.com:mcmillen/sneak.git"
|
|
|
|
destinationUrl = "git@github.com:mcmillen/sneak-public.git"
|
|
|
|
|
|
|
|
core.workflow(
|
|
|
|
name = "default",
|
|
|
|
mode = "ITERATIVE",
|
|
|
|
origin = git.origin(
|
|
|
|
url = sourceUrl,
|
|
|
|
ref = "master",
|
|
|
|
),
|
|
|
|
destination = git.destination(
|
|
|
|
url = destinationUrl,
|
|
|
|
fetch = "master",
|
|
|
|
push = "master",
|
|
|
|
),
|
|
|
|
# Change path to the folder you want to publish publicly
|
2020-01-10 17:26:32 +00:00
|
|
|
origin_files = glob(["README.md", "tools/**", "Shared/**", "Jumpy.Shared/**"]),
|
2020-01-10 17:15:25 +00:00
|
|
|
|
|
|
|
authoring = authoring.pass_thru("Unknown Author <nobody@semicolin.games>"),
|
|
|
|
|
|
|
|
# Change the path here to the folder you want to publish publicly
|
|
|
|
#transformations = [
|
|
|
|
# core.move("", ""),
|
|
|
|
#],
|
|
|
|
)
|