Skip to content

Commit

Permalink
test without args
Browse files Browse the repository at this point in the history
  • Loading branch information
ypoplavs committed Oct 3, 2024
1 parent 1261e5f commit a6267ee
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
12 changes: 6 additions & 6 deletions build/kind/Dockerfile.kind
Original file line number Diff line number Diff line change
Expand Up @@ -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"]

0 comments on commit a6267ee

Please sign in to comment.