I have a PHP laravel 10 app which I am trying to deploy on GAE, I have created the following simple cloud build trigger and chose inline file mode.
<code>steps:
- name: gcr.io/cloud-builders/gcloud
env:
- 'APP_NAME=${_APP_NAME}'
args:
- app
- deploy
timeout: 1600s
</code>
<code>steps:
- name: gcr.io/cloud-builders/gcloud
env:
- 'APP_NAME=${_APP_NAME}'
args:
- app
- deploy
timeout: 1600s
</code>
steps:
- name: gcr.io/cloud-builders/gcloud
env:
- 'APP_NAME=${_APP_NAME}'
args:
- app
- deploy
timeout: 1600s
The build process completes successfully, but unfortunately, my app doesn’t seem to receive the environment variable that I pass in the substitute variable section. I’ve even attempted to remove that environment variable from the app.yaml file, but the issue persists. Any insights or suggestions would be greatly appreciated!