summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorlxohi <16010388+lxohi@users.noreply.github.com>2019-01-22 13:57:33 +0800
committerLi Haoyi <haoyi.sg@gmail.com>2019-01-21 21:57:33 -0800
commiteed2be071d9ca9bfcba756ff1078331548162893 (patch)
tree8d655d77c3dcb3489c20a99d2a900bac5bb30d93 /docs
parentb3efd5a5225afb385e5a75b0e06fd4554a4cb2a6 (diff)
downloadmill-eed2be071d9ca9bfcba756ff1078331548162893.tar.gz
mill-eed2be071d9ca9bfcba756ff1078331548162893.tar.bz2
mill-eed2be071d9ca9bfcba756ff1078331548162893.zip
PublishModule: add --gpgKeyName flag (#530)
* PublishModule: adds gpgKeyName flag * 1 - Intro to Mill.md: usage sample of publish updates for gpgKeyName
Diffstat (limited to 'docs')
-rw-r--r--docs/pages/1 - Intro to Mill.md6
1 files changed, 4 insertions, 2 deletions
diff --git a/docs/pages/1 - Intro to Mill.md b/docs/pages/1 - Intro to Mill.md
index e4ba6d46..ab5a88ad 100644
--- a/docs/pages/1 - Intro to Mill.md
+++ b/docs/pages/1 - Intro to Mill.md
@@ -740,13 +740,15 @@ your sonatype credentials (e.g. `lihaoyi:foobarbaz`) and GPG password as inputs:
```bash
$ mill foo.publish
-Missing arguments: (--sonatypeCreds: String, --gpgPassphrase: String, --release: Boolean)
+Missing arguments: (--sonatypeCreds: String, --release: Boolean)
Arguments provided did not match expected signature:
publish
--sonatypeCreds String (format: "username:password")
- --gpgPassphrase String
+ --gpgPassphrase String (default null)
+ --gpgKeyName String (default null)
+ --signed Boolean (default true)
--release Boolean
```