thegeeklab / wp-docker-buildx

Woodpecker CI plugin to build multiarch OCI images with buildx
https://woodpecker-plugins.geekdocs.de/plugins/wp-docker-buildx
Apache License 2.0
0 stars 0 forks source link

`build_args`: support numeric and boolean values #279

Open pat-s opened 4 days ago

pat-s commented 4 days ago

Currently, build_args requires values to be set as characters. Using numeric/boolean values results in empty values in the final build call.

xoxys commented 3 days ago

A bit confused about this one. Plugins get all settings via env var from the server. As env vars are untyped/strings I don't see how this could be a plugin issue :thinking:

pat-s commented 3 days ago

Previously I had build_args defined as a list, e.g. - FOO=var, now it is a map (FOO: "var"). Maybe there is some coercing going on? (didn't do any inspection yet)