pushci 1.4.3 → 1.4.5
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/bin/pushci-darwin-amd64
CHANGED
|
Binary file
|
package/bin/pushci-darwin-arm64
CHANGED
|
Binary file
|
package/bin/pushci-linux-amd64
CHANGED
|
Binary file
|
package/bin/pushci-linux-arm64
CHANGED
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/bin/pushci.js
CHANGED
|
@@ -24,8 +24,16 @@ const os = require('os');
|
|
|
24
24
|
|
|
25
25
|
const pkg = require('../package.json');
|
|
26
26
|
const VERSION = pkg.version;
|
|
27
|
-
|
|
28
|
-
|
|
27
|
+
// Public release distribution repo — binaries for brew/curl/shim
|
|
28
|
+
// fallback live here. The product source is in a private repo;
|
|
29
|
+
// this public one holds only the shim + release tarballs so
|
|
30
|
+
// unauthenticated install paths actually work.
|
|
31
|
+
const REPO = 'finsavvyai/pushci-cli';
|
|
32
|
+
// Go install is not supported with a private source repo. The
|
|
33
|
+
// Go module line below is retained for historical context but
|
|
34
|
+
// no code path uses it anymore. Users who want a Go build must
|
|
35
|
+
// contact hello@pushci.dev for commercial licensing.
|
|
36
|
+
const GO_MODULE = 'github.com/finsavvyai/pushci-cli (binaries only)';
|
|
29
37
|
|
|
30
38
|
const BINARY_NAME = os.platform() === 'win32' ? 'pushci.exe' : 'pushci';
|
|
31
39
|
const PLATFORM_MAP = { darwin: 'darwin', linux: 'linux', win32: 'windows' };
|
|
@@ -208,9 +216,9 @@ function printInstallHelp() {
|
|
|
208
216
|
console.error('pushci: could not locate a working binary.');
|
|
209
217
|
console.error('');
|
|
210
218
|
console.error('Online install paths:');
|
|
211
|
-
console.error('
|
|
212
|
-
console.error(' brew install finsavvyai/tap/pushci');
|
|
213
|
-
console.error(
|
|
219
|
+
console.error(' npm install -g pushci # bundled binaries, always works');
|
|
220
|
+
console.error(' brew install finsavvyai/tap/pushci # macOS + Linux');
|
|
221
|
+
console.error(' curl -fsSL https://pushci.dev/install.sh | sh');
|
|
214
222
|
console.error('');
|
|
215
223
|
console.error('Offline / sandbox / air-gapped path:');
|
|
216
224
|
console.error(' 1. Download the tarball for your platform from:');
|
|
@@ -219,6 +227,9 @@ function printInstallHelp() {
|
|
|
219
227
|
console.error(' 3. Point the shim at the extracted binary:');
|
|
220
228
|
console.error(' export PUSHCI_BINARY=/path/to/pushci');
|
|
221
229
|
console.error('');
|
|
230
|
+
console.error('Commercial licensing / enterprise / source access:');
|
|
231
|
+
console.error(' hello@pushci.dev');
|
|
232
|
+
console.error('');
|
|
222
233
|
console.error("Don't have Node installed?");
|
|
223
234
|
console.error(' macOS: brew install node');
|
|
224
235
|
console.error(' Linux: https://nodejs.org/en/download/package-manager');
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pushci",
|
|
3
|
-
"version": "1.4.
|
|
4
|
-
"description": "AI-native CI/CD that runs on your machine. Zero config, zero cost. Works inside AI agent sandboxes (Claude, Cursor, Windsurf). 33 languages,
|
|
3
|
+
"version": "1.4.5",
|
|
4
|
+
"description": "AI-native CI/CD that runs on your machine. Zero config, zero cost. Works inside AI agent sandboxes (Claude, Cursor, Windsurf). 33 languages, 40+ frameworks, 23 deploy targets, 24 installable skills, Tailscale mesh, blast radius analysis.",
|
|
5
5
|
"bin": {
|
|
6
6
|
"pushci": "bin/pushci.js"
|
|
7
7
|
},
|