-
| eg  | 
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
| You can set the        -
        name: Build and push
        uses: docker/build-push-action@v6
        with:
          push: true
          tags: user/app:latest
        env:
          DEBUG: 1If you want the BuildKit logs with debug enabled, see https://docs.docker.com/build/ci/github-actions/configure-builder/#buildkit-container-logs | 
Beta Was this translation helpful? Give feedback.
-
| env.DEBUG is valid, but I still can't see what's wrong. I can build successfully using docker buildx cli, but fail using actions self on the same computer. Dockerfile FROM oven/bun:alpine
WORKDIR /workspace
COPY package.json ./
RUN bun install --production
COPY ./ ./
RUN bun run buildActions log  | 
Beta Was this translation helpful? Give feedback.

You can set the
DEBUG: 1env var in your workflow that would act the same as the--debugflag:- name: Build and push uses: docker/build-push-action@v6 with: push: true tags: user/app:latest env: DEBUG: 1If you want the BuildKit logs with debug enabled, see https://docs.docker.com/build/ci/github-actions/configure-builder/#buildkit-container-logs