CrazyMax
CrazyMax
Thanks for reporting, what outputs are being created in `Set output variables` step? Can you show what returns `.github/workflows/extract-image-names.sh`? I think it would be better to rely on https://github.com/actions/github-script instead...
I think something like this could to the trick (not tested): ```yaml - name: Set output variables uses: actions/github-script@v7 with: script: | for (const key in JSON.parse(process.env.BAKE_METADATA || '{}', 'utf-8'))...
Closing this one for now but feel free to leave a comment
> but subsequent builds are not taking advantage of the layers cache even though nothing in the repository changed at all. I don't see any use of cache exporters in...
Would need to look at your Dockerfile and build logs to figure out if this related to context changes (maybe `.git` folder). Can you share your `.dockerbuild` file from the...
Seems cache is busted at `COPY --parents` instruction:  Wonder if this is a bug with new `--parents` flag :thinking: Can you try without `--parents` if possible? Can you also...
ci issue https://github.com/moby/buildkit/actions/runs/11163982683/job/31032224942?pr=5394#step:5:305 is unrelated and tracked in https://github.com/moby/buildkit/issues/5395
> * `git clone https://github.com/docker/getting-started-app.git` > * `docker build -t getting-started .` > * `docker run -dp 127.0.0.1:3000:3000 -w /app --mount "type=bind,src=$pwd,target=/app" node:18-alpine sh -c "yarn install && yarn run...
@ainze Ok looking at ` => => transferring context: 53.33MB ` in your logs it seems to upload `node_modules` folder that has been previously created. Seems there is a file...
Thanks for your report, can you take a screenshot of desktop-linux builder in Builders settings like:  Fyi you can increase storage limit for this builder by updating the Daemon...