Colin McMillen
ae8fa0d21d
This reverts commit 5c9f574644ecd78b112ea857d658f670ef4773e3. GitOrigin-RevId: 277054282d105e4a5f185ac51983581c89b8a031
26 lines
750 B
Plaintext
26 lines
750 B
Plaintext
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
|
|
origin_files = glob(["README.md", "tools/**", "Shared/**", "SharedTests/**", "Jumpy.Shared/**"]),
|
|
|
|
authoring = authoring.pass_thru("Unknown Author <nobody@semicolin.games>"),
|
|
|
|
# Change the path here to the folder you want to publish publicly
|
|
#transformations = [
|
|
# core.move("", ""),
|
|
#],
|
|
)
|