I am building a serverless web application with all the source code managed by Google's Cloud Source Repository. My directory looks like this:
/webapp
/functions
*serverless functions*
/static
/css
app.css
/js
app.js
I have build triggers active on this repository monitoring the serverless functions and redeploying them as Google Cloud Functions every time a change is pushed, which is great. My problem now is that I can't seem to find a way to get my css and js automatically pushed into a Cloud Storage bucket for general availability in a likewise manner.
How is this generally done?