From a6267eefd4ed730382222c2ac788d59299ffc1c1 Mon Sep 17 00:00:00 2001 From: ypoplavs Date: Thu, 3 Oct 2024 18:24:25 +0300 Subject: [PATCH] test without args --- .github/workflows/release.yaml | 2 +- build/kind/Dockerfile.kind | 12 ++++++------ 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 5271107945..939b666b1c 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -145,7 +145,7 @@ jobs: - name: Build and push uses: docker/build-push-action@v6 with: - build-args: segmentio_key="${{secrets.TESTKUBE_SEGMENTIO_KEY}}",ga_id="${{secrets.TESTKUBE_CLI_GA_MEASUREMENT_ID}}",ga_secret="${{secrets.TESTKUBE_CLI_GA_MEASUREMENT_SECRET}}" + # build-args: segmentio_key="${{secrets.TESTKUBE_SEGMENTIO_KEY}}",ga_id="${{secrets.TESTKUBE_CLI_GA_MEASUREMENT_ID}}",ga_secret="${{secrets.TESTKUBE_CLI_GA_MEASUREMENT_SECRET}}" context: build/kind file: build/kind/Dockerfile.kind platforms: linux/amd64,linux/arm64 diff --git a/build/kind/Dockerfile.kind b/build/kind/Dockerfile.kind index 1b60750c90..2a17cdcf05 100644 --- a/build/kind/Dockerfile.kind +++ b/build/kind/Dockerfile.kind @@ -26,12 +26,12 @@ RUN chmod +x /usr/local/bin/entrypoint.sh COPY ./images /images COPY k6.yaml /examples/k6.yaml -ARG segmentio_key -ENV SEGMENTIO_KEY=$segmentio_key -ARG ga_id -ENV GA_ID=$ga_id -ARG ga_secret -ENV GA_SECRET=$ga_secret +# ARG segmentio_key +# ENV SEGMENTIO_KEY=$segmentio_key +# ARG ga_id +# ENV GA_ID=$ga_id +# ARG ga_secret +# ENV GA_SECRET=$ga_secret # Step 8: Set Docker entry point for DIND (Docker-in-Docker) ENTRYPOINT ["tini", "--", "/usr/local/bin/entrypoint.sh"]