However, there is no default for that parameter so it is required on usage:
# Error calling job: 'buildpacks/build'
# Missing required argument(s): working-directory
#
# -------
# Warning: This configuration was auto-generated to show you the message above.
# Don't rerun this job. Rerunning will have no effect.
false
In the orb examples, there is no
working-directory
provided: https://github.com/buildpacks/pack-orb/blob/e380792cfd5b0d58207a58307e7295b6083f19c5/orb.yml#L192-L195However, there is no default for that parameter so it is required on usage:
It appears that the actual command implementation does have a backup of
""
for this value which could be moved to thedefault
definition of the parameter: https://github.com/buildpacks/pack-orb/blob/e380792cfd5b0d58207a58307e7295b6083f19c5/orb.yml#L116