Some checks failed
Tests / setup-tf-providers (terraform) (push) Failing after 7m42s
Tests / setup-tf-providers (tofu) (push) Failing after 3m36s
Tests / examples-project-templates (push) Has been skipped
Tests / examples-modules (terraform) (push) Has been skipped
Tests / examples-modules (tofu) (push) Has been skipped
Tests / modules (terraform) (push) Has been skipped
Tests / modules (tofu) (push) Has been skipped
Tests / fast (terraform) (push) Has been skipped
Tests / schemas (push) Has been skipped
Linting / linting (push) Failing after 4m41s
Create daily release tags
/ Create tag on master if there was activity in last 24 hours (push) Successful in 14s
24 lines
560 B
Makefile
24 lines
560 B
Makefile
# Makefile - Kókány Edition
|
|
# Ha nem érted minek van, ne piszkáld.
|
|
|
|
.PHONY: all test deploy kocsma blame
|
|
|
|
all:
|
|
@echo "Building everything... just kidding, run 'make kocsma' instead."
|
|
|
|
test:
|
|
@echo "Testing? Minek az, majd kipróbálod élesben és kiderül."
|
|
@echo "If it crashes, it crashes. Jóvanazúgy."
|
|
|
|
deploy:
|
|
@echo "Deploying to production after 5 pálinkas..."
|
|
@terraform apply -auto-approve || ./tools/find_blame.py
|
|
|
|
kocsma:
|
|
@echo "Work is done. Irány a kocsma!"
|
|
@sleep 1
|
|
@echo "🍺 Egészségedre! 🍺"
|
|
|
|
blame:
|
|
@./tools/find_blame.py
|