@@ -17,6 +17,7 @@ class Context:
1717 vercel_project_id : str
1818 production : bool
1919 public_google_maps_api_key : str
20+ public_google_map_id : str
2021 public_sentry_dsn : str
2122 public_upstash_search_rest_url : str
2223 public_upstash_search_readonly_token : str
@@ -76,12 +77,15 @@ def build_context() -> Context:
7677 production = parse_bool (get_input ("PRODUCTION" ), default = not is_pr )
7778
7879 public_google_maps_api_key = get_input ("PUBLIC_GOOGLE_MAPS_API_KEY" )
80+ public_google_map_id = get_input ("PUBLIC_GOOGLE_MAP_ID" )
7981 public_sentry_dsn = get_input ("PUBLIC_SENTRY_DSN" )
8082 public_upstash_search_rest_url = get_input ("PUBLIC_UPSTASH_SEARCH_REST_URL" )
8183 public_upstash_search_readonly_token = get_input ("PUBLIC_UPSTASH_SEARCH_READONLY_TOKEN" )
8284
8385 if not public_google_maps_api_key :
8486 raise ValueError ("Missing required input: PUBLIC_GOOGLE_MAPS_API_KEY" )
87+ if not public_google_map_id :
88+ raise ValueError ("Missing required input: PUBLIC_GOOGLE_MAP_ID" )
8589 if not public_sentry_dsn :
8690 raise ValueError ("Missing required input: PUBLIC_SENTRY_DSN" )
8791 if not public_upstash_search_rest_url :
@@ -136,6 +140,7 @@ def build_context() -> Context:
136140 vercel_project_id = vercel_project_id ,
137141 production = production ,
138142 public_google_maps_api_key = public_google_maps_api_key ,
143+ public_google_map_id = public_google_map_id ,
139144 public_sentry_dsn = public_sentry_dsn ,
140145 public_upstash_search_rest_url = public_upstash_search_rest_url ,
141146 public_upstash_search_readonly_token = public_upstash_search_readonly_token ,
0 commit comments