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.

41 lines
1.1 KiB

  1. sourceUrlGitHub = "git@github.com:mcmillen/sneak-private.git"
  2. destinationUrlGitHub = "git@github.com:mcmillen/sneak.git"
  3. sourceUrlGitea = "git@git.semicolin.games:colin/sneak-private.git"
  4. destinationUrlGitea = "git@git.semicolin.games:colin/sneak.git"
  5. files = ["README.md", "tools/**", "Shared/**", "SharedTests/**", "Jumpy.Shared/**"]
  6. core.workflow(
  7. name = "github",
  8. mode = "ITERATIVE",
  9. origin = git.origin(
  10. url = sourceUrlGitHub,
  11. ref = "master",
  12. ),
  13. destination = git.destination(
  14. url = destinationUrlGitHub,
  15. fetch = "master",
  16. push = "master",
  17. ),
  18. origin_files = glob(files),
  19. authoring = authoring.pass_thru("Unknown Author <nobody@semicolin.games>"),
  20. )
  21. core.workflow(
  22. name = "gitea",
  23. mode = "ITERATIVE",
  24. origin = git.origin(
  25. url = sourceUrlGitea,
  26. ref = "master",
  27. ),
  28. destination = git.destination(
  29. url = destinationUrlGitea,
  30. fetch = "master",
  31. push = "master",
  32. ),
  33. origin_files = glob(files),
  34. authoring = authoring.pass_thru("Unknown Author <nobody@semicolin.games>"),
  35. )