Open maxheld83 opened 5 years ago
also need to verify this with support.
wrote to support to verify:
on the old, HCL-based github actions there was a
runs
parameter, which would just be prepended todocker run ...
asCOMMAND
andARGS
, 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.More details here: https://github.com/r-lib/ghactions/issues/338
Do I have this right?
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.