diff --git a/README.md b/README.md
index 7948d21a3e0c580c9b9adbe3f7e68c884c96d187..b661d098d867c3cc009eeaad3108d45e19d41df2 100644
--- a/README.md
+++ b/README.md
@@ -108,14 +108,15 @@ You can set the GitLab token via the `GITLAB_TOKEN` environment variable or the
   - release
 
 release:
-  image: registry.gitlab.com/go-semantic-release/semantic-release:latest
+  image:
+    name: registry.gitlab.com/go-semantic-release/semantic-release:latest
+    entrypoint: [""]
   stage: release
-  # Remove this if you want a release created for each push to master
-  when: manual
+  # when: manual # Add this if you want to manually create releases
   only:
     - master
   script:
-    - release
+    - semantic-release # Add --allow-no-changes if you want to create a release for each push
 ```
 
 ## Plugin System