diff --git a/README.md b/README.md index 43d1ab2..c8eab7e 100644 --- a/README.md +++ b/README.md @@ -2,6 +2,10 @@ An GitHub Action for deploying revisions to Google Cloud Run. +## v2 breaking changes + +Version 2 assumes that the deployed image is already pushed into Container Registry. + ## Usage In your actions workflow, somewhere after the step that builds diff --git a/entrypoint.sh b/entrypoint.sh index f306d64..24538f3 100644 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -29,9 +29,6 @@ then fi gcloud auth activate-service-account --key-file="$HOME"/gcloud.json --project "$INPUT_PROJECT" -gcloud auth configure-docker - -docker push "$INPUT_IMAGE" gcloud run deploy "$INPUT_SERVICE" \ --image "$INPUT_IMAGE" \