Upload build folder in Google Cloud Build
问题 I'm trying to upload my React app to App Engine using Cloud Build but it upload all source files. Is it possible to only deploy the build folder using Cloud Build pipeline? Current pipeline: steps: # Install - name: 'gcr.io/cloud-builders/npm' args: ['install'] # Build - name: 'gcr.io/cloud-builders/npm' args: ['run', 'build'] # Deploy - name: "gcr.io/cloud-builders/gcloud" args: ["app", "deploy"] timeout: "1600s" 回答1: I assume that you want to only deploy the Build folder and not to upload