@donezone/cli 0.1.8 → 0.1.9
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 +12 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -9,9 +9,10 @@ logic outlined in the spec, add supporting modules under `src/`, and extend the
|
|
|
9
9
|
|
|
10
10
|
## Binary releases
|
|
11
11
|
|
|
12
|
-
Single-file binaries for `@donezone/cli` are built automatically via
|
|
13
|
-
`.github/workflows/
|
|
14
|
-
macOS (arm64 + x64), and Windows. Each release also includes a `manifest.json` file used by
|
|
12
|
+
Single-file binaries for `@donezone/cli` are built automatically via the
|
|
13
|
+
`cli-build` job inside `.github/workflows/npm-publish.yml`. Every publishable tag uploads archives for linux
|
|
14
|
+
(glibc and musl), macOS (arm64 + x64), and Windows. Each release also includes a `manifest.json` file used by
|
|
15
|
+
the installer.
|
|
15
16
|
|
|
16
17
|
To install the latest CLI binary without cloning this repo, run:
|
|
17
18
|
|
|
@@ -21,3 +22,11 @@ curl -fsSL https://raw.githubusercontent.com/mccallofthewild/cw-js/main/packages
|
|
|
21
22
|
|
|
22
23
|
Pass an explicit tag or version (`bash install.sh v0.1.4`) to install a historical build. Set
|
|
23
24
|
`DONECLI_BIN_DIR` to override the installation directory.
|
|
25
|
+
|
|
26
|
+
### Publishing binaries
|
|
27
|
+
|
|
28
|
+
Push a tag named `vX.Y.Z` (or run the workflow manually) to build and publish a new
|
|
29
|
+
set of multi-platform binaries plus the manifest file. The `.github/workflows/npm-publish.yml`
|
|
30
|
+
workflow (jobs `cli-build`/`cli-release`) runs automatically for each such tag push.
|
|
31
|
+
Run `bun bump-cli [patch|minor|major]` from the repo root to bump the CLI version, stamp the release commit,
|
|
32
|
+
and create the tag in one step.
|