@donezone/cli 0.1.12 → 0.1.14
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 +6 -6
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -10,9 +10,9 @@ logic outlined in the spec, add supporting modules under `src/`, and extend the
|
|
|
10
10
|
## Binary releases
|
|
11
11
|
|
|
12
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
|
|
14
|
-
(glibc
|
|
15
|
-
the installer.
|
|
13
|
+
`cli-build` job inside `.github/workflows/npm-publish.yml`. Every publishable tag uploads archives for Linux
|
|
14
|
+
(glibc only, x64 + arm64), macOS (arm64 + x64), and Windows (x64). Each release also includes a `manifest.json`
|
|
15
|
+
file used by the installer.
|
|
16
16
|
|
|
17
17
|
To install the latest CLI binary without cloning this repo, run:
|
|
18
18
|
|
|
@@ -25,8 +25,8 @@ Pass an explicit tag or version (`bash install.sh v0.1.4`) to install a historic
|
|
|
25
25
|
|
|
26
26
|
### Publishing binaries
|
|
27
27
|
|
|
28
|
-
Push a tag named `vX.Y.Z` (or run the workflow manually) to build and publish a new
|
|
29
|
-
|
|
30
|
-
|
|
28
|
+
Push a tag named `vX.Y.Z` (or run the workflow manually) to build and publish a new set of multi-platform
|
|
29
|
+
binaries (Linux glibc, macOS, Windows) plus the manifest file. The `.github/workflows/npm-publish.yml` workflow
|
|
30
|
+
(jobs `cli-build`/`cli-release`) runs automatically for each such tag push.
|
|
31
31
|
Run `bun bump-cli [patch|minor|major]` from the repo root to bump the CLI version, stamp the release commit,
|
|
32
32
|
and create the tag in one step.
|