CrazyMax
CrazyMax
Ok it happens during the build at `RUN ./gradlew build -x test` which might be an OOM issue on the GitHub runner. I'm surprised we don't have more logs after...
```yaml config-inline: | [registries.insecure] "git.fritz.box" = true ``` BuildKit config does not look correct, see https://docs.docker.com/build/buildkit/configure/#setting-registry-certificates and https://docs.docker.com/build/buildkit/toml-configuration/ for more info.
> And my act_runner config to: > But I get this: > `::error::Unable to locate executable file: docker. Please verify either the file path exists or the file can be...
``` #30 [base 23/26] RUN go mod download #30 sha256:fccecca06c0e928afeb80a372e92178cfe09778a2d41c53d690328cd9350920f 43.01kB / 43.01kB 0.1s done #30 sha256:46e25f3fb1d9354adea3ee0ec11523a2d4bdb24c795548575f2a8a180f8ef285 2.53kB / 2.53kB 0.1s done ``` This looks confusing I agree but following...
> ERROR: docker exporter does not currently support exporting manifest lists You're trying to load a multi-platform image to the Docker store which is not supported atm. > When I...
> I use the registry as cache and then pull it from the registry: It will not work on pull request as you need to be authenticated against the registry...
It should already be possible using the `env` property: ```yaml - name: Build and push uses: docker/build-push-action@v5 with: context: . push: true tags: user/app:latest env: SOURCE_DATE_EPOCH: 0 ``` @dvdksn Maybe...
> I hope it is okay to ask that here. Is it possible to run a stage shared between platforms? There is no value to build my React frontend twice....
We discussed about this with @jedevc. I think we could wrap the `imagetools` command in an action (or subaction) but we also need to think about providing additional features with...
Let's continue the discussion in https://github.com/docker/actions-toolkit/issues/239. After that being implemented, we could consider a new action to handle `imagetools` command.