Change GCP sample deploy directory to target/deploy

Fixes: #486.
Resolves #487
This commit is contained in:
Mike Eltsufin
2020-04-08 14:56:43 -04:00
committed by Oleg Zhurakousky
parent b5592d8e7a
commit 82df971c2b
4 changed files with 6 additions and 7 deletions

View File

@@ -27,7 +27,7 @@ Package the application.
mvn package
----
You should see the fat jar in the `deploy` directory.
You should see the fat jar in the `target/deploy` directory.
Make sure that you have the https://cloud.google.com/sdk/install[Cloud SDK CLI] installed.
@@ -38,7 +38,7 @@ gcloud alpha functions deploy function-sample-gcp \
--entry-point org.springframework.cloud.function.adapter.gcloud.FunctionInvoker \
--runtime java11 \
--trigger-http \
--source deploy \
--source target/deploy \
--memory 512MB
----