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(["tools/**", "Shared/**", "Jumpy.Shared/**"]), authoring = authoring.pass_thru("Unknown Author "), # Change the path here to the folder you want to publish publicly #transformations = [ # core.move("", ""), #], )