A stealth-based 2D platformer where you don't have to kill anyone unless you want to. https://www.semicolin.games
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
719 B

  1. sourceUrl = "git@github.com:mcmillen/sneak.git"
  2. destinationUrl = "git@github.com:mcmillen/sneak-public.git"
  3. core.workflow(
  4. name = "default",
  5. mode = "ITERATIVE",
  6. origin = git.origin(
  7. url = sourceUrl,
  8. ref = "master",
  9. ),
  10. destination = git.destination(
  11. url = destinationUrl,
  12. fetch = "master",
  13. push = "master",
  14. ),
  15. # Change path to the folder you want to publish publicly
  16. origin_files = glob(["tools/**", "Shared/**", "Jumpy.Shared/**"]),
  17. authoring = authoring.pass_thru("Unknown Author <nobody@semicolin.games>"),
  18. # Change the path here to the folder you want to publish publicly
  19. #transformations = [
  20. # core.move("", ""),
  21. #],
  22. )