-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
43 lines (32 loc) · 746 Bytes
/
Makefile
File metadata and controls
43 lines (32 loc) · 746 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
SHELL = /bin/sh
.SUFFIXES:
.SUFFIXES: .sh
# .PHONY: all
# all: build run
.PHONY: submodules
submodules:
bash ./scripts/miscellaneous/submodules.sh $(environment)
.PHONY: install-bash
install-bash:
sh ./scripts/install/bash.sh
.PHONY: install-hugo
install-hugo:
bash ./scripts/install/hugo.sh
.PHONY: install-git
install-git:
bash ./scripts/install/git.sh $(environment)
.PHONY: install-npm
install-npm:
bash ./scripts/install/npm.sh
.PHONY: install-vercel-cli
install-vercel-cli:
bash ./scripts/install/vercel-cli.sh
.PHONY: ci-verify
ci-verify:
bash ./scripts/ci/verify.sh $(environment)
.PHONY: ci-build
ci-build:
bash ./scripts/ci/build.sh
.PHONY: ci-deploy
ci-deploy:
bash ./scripts/ci/deploy.sh $(org) $(project) $(token)