You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
on the old, HCL-based github actions there was a runs parameter, which would just be prepended to docker run ... as COMMAND and ARGS, effectively overwriting any default entrypoint and args.
It appears that this is now no longer supported via steps.with.*, but you only have entrypoint and args, which can achieve the same result.
If so, it might be worthwhile a) to add it back in, or b) to note in the docs that runs has been deprecated, because it's something the old actions could do.
Probably makes more sense to deprecate, since it was always a bit confusing/redundant.
it appears that the
runs
arguments to actions (which used to just be appended todocker run
asCOMMAND
andARGS
), has been deprecated.Now you can only overwrite entrypoint and args separately.
Like so:
Whereas before, we could:
Not a huge limitation, but something to be aware of.
Just slightly less convenient, I guess.
The text was updated successfully, but these errors were encountered: