Deployment via relayer using Defender v2 fails due to gas limit

Deployments via OZ Defender v2 using openzeppelin-foundry-upgrades are failing arbitrarily. Deployment is taking place via a dedicated relayer. The same contract, using the same constructor args, deployed via CREATE2 (using different salt each time) fails arbitrarily.

There's no clear explanation from the CLI why this is happening, only:

Error:
script failed: revert: Failed to deploy contract ERC1967Proxy.sol:ERC1967Proxy: /Users/dev/.npm/_npx/2b758b34d2e037e1/node_modules/@openzeppelin/defender-deploy-client-cli/dist/internal/deploy-contract.js:42
            throw new Error(`Deployment ${deployment.deploymentId} failed.`);
                  ^

Error: Deployment e21931db-ec0a-41bd-8410-ffea685cf5f0 failed.
    at deployContract (/Users/dev/.npm/_npx/2b758b34d2e037e1/node_modules/@openzeppelin/defender-deploy-client-cli/dist/internal/deploy-contract.js:42:19)
    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)
    at async deploy (/Users/dev/.npm/_npx/2b758b34d2e037e1/node_modules/@openzeppelin/defender-deploy-client-cli/dist/commands/deploy.js:34:25)
    at async main (/Users/dev/.npm/_npx/2b758b34d2e037e1/node_modules/@openzeppelin/defender-deploy-client-cli/dist/command-selector.js:31:13)
    at async run (/Users/dev/.npm/_npx/2b758b34d2e037e1/node_modules/@openzeppelin/defender-deploy-client-cli/dist/cli.js:6:5)

Node.js v18.17.0

:computer: Environment
Forge: forge 0.2.0 (79dd88c 2024-04-19T00:21:49.613262000Z)
NodeJS: v18.17.0
macOS: 14.1.1

:memo:Details
The failed transaction is here: https://sepolia.etherscan.io/tx/0xe72ecb61c0f33105b3c943a7aacb5042a751a6280ce0b74b40a476aa6f656609

The only clue seems to be that the deployment exceeds the gas limit provided.

Screenshot 2024-04-28 at 12.19.34 PM

Main question, is there a way to modify/set the gas limit when deploying via the relayer using openzeppelin-foundry-upgrades?

:1234: Code to reproduce
I cannot reproduce with a minimal example.