[codesign] quick update README.md (#2318)

* quickly update README

* clean up README
diff --git a/codesign/README.md b/codesign/README.md
index ddf6353..ce23050 100644
--- a/codesign/README.md
+++ b/codesign/README.md
@@ -18,8 +18,8 @@
 Every new commit will trigger pre-submit builders to auto build a new version
 for different platforms without any tag/ref.
 
-When a new commit is submitted, post-submit builders will trigger a new version
-with a tag of `commit_sha`, and a ref of `staging`.
+When a new commit is submitted, post-submit builders will trigger the build of
+a new version of the cipd package, and tag the package with `latest`.
 
 ### Manual build
 
@@ -28,7 +28,7 @@
 
 ```bash
 cipd create -in build                   \
-  -name flutter/device_doctor/<os>-amd64 \
+  -name flutter/codesign/<os>-amd64 \
   -ref <ref>                     \
   -tag sha_timestamp:<revision>_<timestamp>
 ```
@@ -38,16 +38,19 @@
 
 ## How to use
 
-`codesign` is the executable binary, and can be called
+`codesign` is the executable binary in the `build` folder, and can be called via
 
-```bash
-/path/to/codesign --commit <commit_sha> (--production)
---filepath <darwin-x64/FlutterMacOS.framework.zip>
---filepath <ios/artifacts.zip>
---filepath <more_file_path>
-```
+ ```bash
+ ./codesign --[no-]dryrun
+ --codesign-cert-name="FLUTTER.IO LLC"
+ --codesign-team-id-file-path=/a/b/c.txt
+ --codesign-appstore-id-file-path=/a/b/b.txt
+ --app-specific-password-file-path=/a/b/a.txt
+ --input-zip-file-path=/a/input.zip
+ --output-zip-file-path=/b/output.zip
+ ```
 
-Use `/path/to/codesign --help` to learn more.
+Use `codesign --help` to learn more.
 
-**Note**: Do not add the --production flag unless the binaries are
-intended to be uploaded back to Google Cloud Storage.
\ No newline at end of file
+Alternatively, if user has dart installed and does not wish to build a binary,
+codesign app can be invoked via `dart run bin/codesign.dart --<extra_flags>`.