File tree 2 files changed +3
-1
lines changed
2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change 13
13
inputs : {}
14
14
15
15
env :
16
+ DOCKER_REPO : coolboi567
16
17
TARGET : linux/arm64,linux/amd64
17
18
BUILD_FLAGS : --no-cache
18
19
Original file line number Diff line number Diff line change 1
1
TAG = $(shell git describe --tags --always)
2
+ DOCKER_REPO := $(if $(DOCKER_REPO ) ,$(DOCKER_REPO ) ,coolboi567)
2
3
USER_NAME = $(shell git config --get remote.origin.url | sed 's/\.git$$//' | tr ':.' '/' | rev | cut -d '/' -f 2 | rev)
3
4
REPO_NAME = $(shell git config --get remote.origin.url | sed 's/\.git$$//' | tr ':.' '/' | rev | cut -d '/' -f 1 | rev)
4
5
TARGET := $(if $(TARGET ) ,$(TARGET ) ,$(shell ./evaluate_platform.sh) )
@@ -7,7 +8,7 @@ BUILD_DATE = $(shell date -u +'%Y-%m-%dT%H:%M:%SZ')
7
8
BUILD_FLAGS := $(if $(BUILD_FLAGS ) ,$(BUILD_FLAGS ) ,--load --no-cache)
8
9
BUILDER_NAME = k8s-wait-for-builder
9
10
NON_ROOT_DOCKERFILE = DockerfileNonRoot
10
- DOCKER_TAGS = $(USER_NAME ) /$(REPO_NAME ) :$(TAG_PREFIX ) latest $(USER_NAME ) /$(REPO_NAME ) :$(TAG_PREFIX )$(TAG ) ghcr.io/$(USER_NAME ) /$(REPO_NAME ) :$(TAG_PREFIX ) latest ghcr.io/$(USER_NAME ) /$(REPO_NAME ) :$(TAG_PREFIX )$(TAG )
11
+ DOCKER_TAGS = $(DOCKER_REPO ) /$(REPO_NAME ) :$(TAG_PREFIX ) latest $(DOCKER_REPO ) /$(REPO_NAME ) :$(TAG_PREFIX )$(TAG ) ghcr.io/$(USER_NAME ) /$(REPO_NAME ) :$(TAG_PREFIX ) latest ghcr.io/$(USER_NAME ) /$(REPO_NAME ) :$(TAG_PREFIX )$(TAG )
11
12
12
13
all : push
13
14
You can’t perform that action at this time.
0 commit comments