don't use make in ci
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
Pavel 2024-05-10 12:46:13 +03:00
parent d924e04f05
commit d70ce97634
2 changed files with 1 additions and 4 deletions

View File

@ -19,7 +19,7 @@ steps:
from_secret: CI_APP_IMAGE
commands:
- docker login -u $CI_REGISTRY_USER -p $CI_REGISTRY_PASSWORD $CI_REGISTRY
- make docker_release
- docker buildx build --push --platform linux/amd64 --tag $CI_APP_IMAGE --file Dockerfile .
when:
branch:
- master

View File

@ -14,9 +14,6 @@ build: deps fmt
docker:
@docker buildx build --platform linux/amd64 --tag $CI_APP_IMAGE --file Dockerfile .
docker_release:
@docker buildx build --push --platform linux/amd64 --tag $CI_APP_IMAGE --file Dockerfile .
run:
@${BIN} run
fmt: