You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Register nested handlers correctly (#484)
* Register nested handlers at the same time as the main handler to all
registration to work with the stages decorator. (closes#481)
The following will now register the scheduler and job at the same time
correctly.
```
@app.job("testjob2", schedule="* * * * *")
@app.stage(stages=["TEST"])
def test_cloudrun_job2(id):
run_job()
```
GOBLET_BUILD_TAGS and GOBLET_ARTIFACT_BUCKET for cloudfunctionv1 (#477)
upload the code to GOBLET_UPLOAD_BUCKET tagged with first tag in
GOBLET_BUILD_TAGS
deploy cloudfunctionv1 from GOBLET_UPLOAD_BUCKET + GOBLET_ARTIFACT_TAG
(closes#447 )