Maciej Brencz
Maciej Brencz
@DonovanDMC - thanks for a bug report. Are you using the latest version of the `push-to-ghcr` action? I'm trying to reproduce that issue (see #27) and the action ends with...
To allow other custom build arguments to be passed I'd introduce an optional `input` for the action that will [add one more `--build-arg` somewhere here](https://github.com/macbre/push-to-ghcr/blob/master/action.yml#L95-L98).
Interesting, `docker` 24.x does not seem to trigger that issue:
@thomaspaulin - can you try setting `runs-on: "ubuntu-20.04"` in your action and see if that "solves" the issue? Also, can you please try re-running the action using the `master` version...
Something is fishy with Ubuntu's package with Docker. Running `chown` inside the `Dockerfile` does not work (https://github.com/moby/moby/issues/46161).
Interesting, are you using any proxy to get to `web.archive.org`? Code snippet will be helpful here.
```yaml user: nginx ``` Did you try passing the numeric uid/gid pair here? `nginx` user may have a different uid on your host and inside the nginx container.
@Webstijlen - you're absolutely right! The bind definition (for the `/var/log/nginx`) should be commented out as it clashes with how the container is set up, i.e. to emit access logs...
@Jieiku , all pull requests are welcome 🙂
> I assume that for supporting tags, we'd only need to make the condition here (https://github.com/macbre/push-to-ghcr/blob/master/action.yml#L73) a little more generous towards the tag pushing, but I'm no github actions expert...