One would think that simply replacing the contents in the bucket associated with the app would update the app, but that is not the case.
I have a site that I deployed yesterday. I created the bucket, then in the command line created the directory, then deployed the React app doing
gsutil rsync -r gs://bucket-name ./app-name
then I went into the project directory and did
gcloud app deploy
it all worked fine yesterday. But today i made changes, going into the same directory, you simply can't just do gcloud app deploy
again. I copied the new build folder into the bucket. But there seems to be a missing step? I ran the same command as yesterday thinking maybe the rsync would sync the bucket to the app, then I went back into the app and did another deploy. yet nothing has changed. What step am i missing?
This question is not related to: How to Quickly Update Static Site on Google Cloud Storage?