-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTaskfile.dist.yaml
More file actions
49 lines (48 loc) · 843 Bytes
/
Taskfile.dist.yaml
File metadata and controls
49 lines (48 loc) · 843 Bytes
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
version: "3.43"
tasks:
template:
desc: Fetch template updates
interactive: true
env:
GIT_CONFIG_GLOBAL: ""
GIT_CONFIG_SYSTEM: ""
cmds:
- >-
copier
update
--answers-file
.copier-answers.yaml
{{ .CLI_ARGS }}
flake:
desc: Update flake.lock
cmds:
- >-
nix
--accept-flake-config
--extra-experimental-features
'nix-command flakes'
--no-warn-dirty
flake
update
{{ .CLI_ARGS }}
fmt:
desc: Format files
cmds:
- >-
trunk
fmt
{{ .CLI_ARGS }}
lint:
desc: Lint files
cmds:
- >-
trunk
check
{{ .CLI_ARGS }}
secret:
desc: Edit secrets
interactive: true
cmds:
- >-
sops
{{ .CLI_ARGS }}