@proggarapsody/bitbottle 1.91.0 → 1.93.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +19 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -89,9 +89,10 @@ Tokens are intentionally stripped from `hosts.yml` on every save. If you have an
|
|
|
89
89
|
| `webhook` | `list` `view` `create` `delete` |
|
|
90
90
|
| `deploy-key` | `list` `add` `delete` |
|
|
91
91
|
| `branch-rule` | `list` `add` `delete` _(Cloud only)_ |
|
|
92
|
+
| `branch-model` | `get` `set` _(Cloud only)_ |
|
|
92
93
|
| `ssh-key` | `list` `add` `delete` _(Cloud only)_ |
|
|
93
94
|
| `commit` | `log` `view` `status` `status report` `files` `comment {list\|add\|edit\|delete}` |
|
|
94
|
-
| `pipeline` | `list` `view` `run` _(Cloud only)_ |
|
|
95
|
+
| `pipeline` | `list` `view` `run` `steps` `logs` `stop` `trigger` `watch` `schedule {list\|create\|delete}` `cache {list\|delete}` `artifact {list\|download}` _(Cloud only)_ |
|
|
95
96
|
| `deployment` | `list` `view` _(Cloud only)_ |
|
|
96
97
|
| `environment` | `list` `create` `delete` _(Cloud only)_ |
|
|
97
98
|
| `user` | `view` |
|
|
@@ -262,6 +263,23 @@ bitbottle pipeline cache list MYWORKSPACE/my-service
|
|
|
262
263
|
bitbottle pipeline cache delete MYWORKSPACE/my-service {uuid}
|
|
263
264
|
```
|
|
264
265
|
|
|
266
|
+
### Pipeline Artifacts _(Cloud only)_
|
|
267
|
+
|
|
268
|
+
```bash
|
|
269
|
+
# List artifacts produced by a pipeline step
|
|
270
|
+
bitbottle pipeline artifact list {pipeline-uuid} MYWORKSPACE/my-service --step {step-uuid}
|
|
271
|
+
|
|
272
|
+
# Download an artifact to the current directory
|
|
273
|
+
bitbottle pipeline artifact download {pipeline-uuid} MYWORKSPACE/my-service \
|
|
274
|
+
--step {step-uuid} --name build.tar.gz
|
|
275
|
+
|
|
276
|
+
# Download to a specific path, or pipe to stdout
|
|
277
|
+
bitbottle pipeline artifact download {pipeline-uuid} MYWORKSPACE/my-service \
|
|
278
|
+
--step {step-uuid} --name build.tar.gz --out /tmp/build.tar.gz
|
|
279
|
+
bitbottle pipeline artifact download {pipeline-uuid} MYWORKSPACE/my-service \
|
|
280
|
+
--step {step-uuid} --name build.tar.gz --out -
|
|
281
|
+
```
|
|
282
|
+
|
|
265
283
|
### Deployments & Environments _(Cloud only)_
|
|
266
284
|
|
|
267
285
|
```bash
|