This might be a dumb question, but I have a failin...
# help
l
This might be a dumb question, but I have a failing job in GitHub actions in which I try to post `infracost diff`s (between
HEAD
and
main
on a PR).
Copy code
- name: "Generate Infracost cost estimate baseline"                     # Generate base branch cost.               
         run: >                                                                                                           
           infracost breakdown                                                                                            
             --config-file .infracost.yml                                                                                 
             --format json                                                                                                
             --out-file /tmp/infracost-base.json
This errors out, saying that
--path
is required. Is the
--config-file
argument not supported in Actions?