All checks were successful
Create and publish a Docker image 🚀 / build-and-push-image (push) Successful in 1m9s
9 lines
152 B
Makefile
9 lines
152 B
Makefile
build:
|
|
git add .
|
|
@if git diff --cached --quiet; then \
|
|
echo "No changes to commit"; \
|
|
else \
|
|
git commit -m "update"; \
|
|
fi
|
|
git push origin main
|