Justin Shaw
Justin Shaw
If you manually copy over the following files from `node_modules` to `/public` so that these files will be accessible to the scripts, we can get past the webpack problem. 1....
cc @joeandrews
UPDATE: I turned on terraform logs and found this: ``` 2022-05-08T18:51:48.874-0700 [INFO] ReferenceTransformer: reference not found: "var.use_local" 2022-05-08T18:51:48.874-0700 [INFO] ReferenceTransformer: reference not found: "path.module" 2022-05-08T18:51:48.874-0700 [INFO] ReferenceTransformer: reference not found:...
Tried updating `curl` to the most recent version (`curl 7.83.0 (2022-04-27)`) but got the same error. ``` │ Error: External Program Execution Failed │ │ with module.tf_next.module.statics_deploy.module.lambda_content.data.external.download[0], │ on .terraform/modules/tf_next.statics_deploy.lambda_content/main.tf...
UPDATE: After updating bash to `5.1.16`, I'm getting (a different version of) the same error. ``` │ Error: External Program Execution Failed │ │ with module.npm_download.data.external.download[0], │ on .terraform/modules/npm_download/main.tf line...
Aha! Got it. For whatever reason, on my machine, the bash scripts used windows-style carriage returns which bash did not like. I had this problem before (a recent issue) so...
Thanks for your help, @ofhouse! I'll leave it up to you if you'd like to investigate further or close this issue as-is. Either way, it looks like we have a...
@ofhouse Can you point me in the right direction and I’ll see if I can get a pull request going?
> When I specified git_remote_url like git_remote_url: 'ssh://[email protected]:22/~/appname', rather than git_remote_url: 'ssh://[email protected]:22/appname', then this worked fine for me. Had the same issue, and this worked for me as well.
@josegonzalez sure! ```yaml #deploy.yaml --- name: 'deploy' # Triggers the workflow on push to main branch on: push: branches: - main # Allows you to run this workflow manually from...