-
Notifications
You must be signed in to change notification settings - Fork 0
/
.tmplr.yml
72 lines (64 loc) · 1.94 KB
/
.tmplr.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
steps:
- read: name
from: env.name
fallback:
from: git.name
fallback:
prompt: "Enter the pretty URL for the module."
- read: module_name
from: env.module_name
fallback:
from: git.module_name
fallback:
prompt: "Enter the module name, starting with the prefix \"pr_\"."
- read: module_type
from: env.module_type
fallback:
from: git.module_type
fallback:
prompt: "Enter the module type. Available options are: \"shared\", \"client\", \"server\". Default: \"shared\""
- read: install_directory
from: env.install_directory
fallback:
from: git.install_directory
fallback:
prompt: "Where should the module be installed to? Default: \"modules/\""
- read: release_directory
from: env.release_directory
fallback:
from: git.release_directory
fallback:
prompt: "The directory that should be used for GitHub releases."
- read: git_url
from: env.git_url
fallback:
from: git.git_url
fallback:
prompt: What is the git clone URL for the repository?
- read: github_url
from: env.github_url
fallback:
from: git.github_url
fallback:
prompt: What is the GitHub URL for the repository?
- copy: README.tmpl.md
to: README.md
- copy: Install.cmake.tmpl
to: Install.cmake
- copy: src/pr_module.cpp.tmpl
to: src/pr_module.cpp
- copy: .github/pragma_module_info.json.tmpl
to: .github/pragma_module_info.json
- copy: CMakeLists.txt.tmpl
to: CMakeLists.txt
- copy: examples/ex_load_pragma_module.tmpl.lua
to: examples/ex_load_pragma_module.lua
- remove: README.tmpl.md
- remove: Install.cmake.tmpl
- remove: src/pr_module.cpp.tmpl
- remove: .github/pragma_module_info.json.tmpl
- remove: CMakeLists.txt.tmpl
- remove: template_pragma_module.json
- remove: examples/ex_load_pragma_module.tmpl.lua
- remove: .gitignore
- remove: github_actions