Skip to content

Commit

Permalink
Merge pull request #46 from Danil-Grigorev/propagate-tag-release
Browse files Browse the repository at this point in the history
Fix tag propagation for image build
  • Loading branch information
Danil-Grigorev authored May 24, 2024
2 parents 8f2c3fa + f8a1315 commit 2743707
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions justfile
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,10 @@ _build features="":
docker build -t {{ORG}}/{{NAME}}:{{TAG}} .

# docker build base
build-base features="":
just _build {{features}}
build-base: (_build "")

# docker build base with agent initiated
build-agent-initiated: (_build "agent-initiated")

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

load-base features="":
just build-base {{features}}
just _build {{features}}
kind load docker-image {{ORG}}/{{NAME}}:{{TAG}} --name dev

# Start local dev environment
Expand Down

0 comments on commit 2743707

Please sign in to comment.