-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathMakefile
43 lines (30 loc) · 1.16 KB
/
Makefile
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
###############################################################################
# run-workflow
###############################################################################
.PHONY: run-workflow
run-workflow:
make run-buildapp && make run-git-push
###############################################################################
# run-buildapp
###############################################################################
.PHONY: run-buildapp
run-buildapp:
make -C .github/actions/run-buildapp dc-up
.PHONY: run-buildapp-build
run-buildapp-build:
make -C .github/actions/run-buildapp dc-up-build
.PHONY: run-buildapp-build-no-cache
run-buildapp-build-no-cache:
make -C .github/actions/run-buildapp dc-build-no-cache
###############################################################################
# git-push
###############################################################################
.PHONY: run-git-push
run-git-push:
make -C .github/actions/git-push dc-up
.PHONY: run-git-push-build
run-git-push-build:
make -C .github/actions/git-push dc-up-build
.PHONY: run-git-push-build-no-cache
run-git-push-build-no-cache:
make -C .github/actions/git-push dc-build-no-cache