diff --git a/site/Makefile b/site/Makefile index 48b3e972e6..ebf7223f41 100644 --- a/site/Makefile +++ b/site/Makefile @@ -5,10 +5,10 @@ PROJECT := svelte-dev IMAGE := gcr.io/$(PROJECT)/$(SERVICE):$(HASH) -sapper: +sveltekit: @echo "\n~> updating template & contributors list" @npm run update - @echo "\n~> building Sapper app" + @echo "\n~> building SvelteKit app" @npm run build @@ -17,6 +17,6 @@ docker: @gcloud builds submit --project $(PROJECT) -t $(IMAGE) -deploy: sapper docker +deploy: sveltekit docker @echo "\n~> deploying $(SERVICE) to Cloud Run servers" @gcloud run deploy $(SERVICE) --project $(PROJECT) --allow-unauthenticated --platform managed --region us-central1 --image $(IMAGE) --memory=512Mi