update deps and rebuild

This commit is contained in:
ace
2023-12-18 01:06:44 +03:00
parent fa0ac10f7c
commit b2d186e772
5 changed files with 434 additions and 445 deletions

View File

@ -1,4 +1,5 @@
VERSION=0.1.7
BUILD=1
IMAGE=github-release-bot
ifneq ($(REGISTRY),)
_REGISTRY =$(REGISTRY)/
@ -7,9 +8,9 @@ endif
.PHONY: build push all
build:
docker build -t $(_REGISTRY)$(IMAGE):$(VERSION) -f docker/Dockerfile .
docker build -t $(_REGISTRY)$(IMAGE):$(VERSION)-$(BUILD) -f docker/Dockerfile .
push:
docker push $(_REGISTRY)$(IMAGE):$(VERSION)
docker push $(_REGISTRY)$(IMAGE):$(VERSION)-$(BUILD)
all: build push