diff --git a/.github/workflows/release-dev.yaml b/.github/workflows/release-dev.yaml index 828a089157..7e61339e28 100644 --- a/.github/workflows/release-dev.yaml +++ b/.github/workflows/release-dev.yaml @@ -162,6 +162,7 @@ jobs: segmentio_key=${{secrets.TESTKUBE_SEGMENTIO_KEY}} ga_id=${{secrets.TESTKUBE_CLI_GA_MEASUREMENT_ID}} ga_secret=${{secrets.TESTKUBE_CLI_GA_MEASUREMENT_SECRET}} + docker_image_version=${{steps.tag.outputs.tag}} context: build/kind file: build/kind/kind.Dockerfile platforms: linux/amd64,linux/arm64/v8 diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index cb3516832f..b59e50e038 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -152,6 +152,7 @@ jobs: segmentio_key=${{secrets.TESTKUBE_SEGMENTIO_KEY}} ga_id=${{secrets.TESTKUBE_CLI_GA_MEASUREMENT_ID}} ga_secret=${{secrets.TESTKUBE_CLI_GA_MEASUREMENT_SECRET}} + docker_image_version=${{steps.tag.outputs.tag}} context: build/kind file: build/kind/kind.Dockerfile platforms: linux/amd64,linux/arm64 diff --git a/api/v1/testkube.yaml b/api/v1/testkube.yaml index 88291fa5f4..6b9a3a6377 100644 --- a/api/v1/testkube.yaml +++ b/api/v1/testkube.yaml @@ -6217,6 +6217,10 @@ components: items: type: string example: my-namespace + dockerImageVersion: + type: string + description: docker image version + example: "2.1.2" Repository: description: repository representation for tests in git repositories diff --git a/build/kind/entrypoint.sh b/build/kind/entrypoint.sh index de2ee74779..c1b6f3b2b8 100644 --- a/build/kind/entrypoint.sh +++ b/build/kind/entrypoint.sh @@ -69,21 +69,21 @@ send_event_to_segment() { # Prepare the JSON payload local payload=$(cat <