Skip to content

Commit 2743707

Browse files
Merge pull request #46 from Danil-Grigorev/propagate-tag-release
Fix tag propagation for image build
2 parents 8f2c3fa + f8a1315 commit 2743707

1 file changed

Lines changed: 5 additions & 3 deletions

File tree

justfile

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -71,8 +71,10 @@ _build features="":
7171
docker build -t {{ORG}}/{{NAME}}:{{TAG}} .
7272

7373
# docker build base
74-
build-base features="":
75-
just _build {{features}}
74+
build-base: (_build "")
75+
76+
# docker build base with agent initiated
77+
build-agent-initiated: (_build "agent-initiated")
7678

7779
# docker build with telemetry
7880
build-otel: (_build "telemetry")
@@ -82,7 +84,7 @@ docker-push:
8284
docker push {{ORG}}/{{NAME}}:{{TAG}}
8385

8486
load-base features="":
85-
just build-base {{features}}
87+
just _build {{features}}
8688
kind load docker-image {{ORG}}/{{NAME}}:{{TAG}} --name dev
8789

8890
# Start local dev environment

0 commit comments

Comments
 (0)