@invarn/cibuild 1.9.0 → 1.9.1
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.dev.md +20 -13
- package/README.md +2 -0
- package/dist/cli.cjs +1 -1
- package/package.json +1 -1
package/README.dev.md
CHANGED
|
@@ -46,19 +46,26 @@ For the full pipeline YAML format, step catalog, and examples, see [SPEC.md](SPE
|
|
|
46
46
|
## Commands
|
|
47
47
|
|
|
48
48
|
```bash
|
|
49
|
-
ci init
|
|
50
|
-
ci init --create
|
|
51
|
-
ci init --import <path>
|
|
52
|
-
ci build
|
|
53
|
-
ci run <path> [-w <name>]
|
|
54
|
-
ci run <path> [-w <name>] --production
|
|
55
|
-
ci run <path> [-w <name>] --validate-only
|
|
56
|
-
ci run <path> [-w <name>] --skip-validation
|
|
57
|
-
ci validate <path> [-w <name>]
|
|
58
|
-
ci detect-platform <path> [-w <name>]
|
|
59
|
-
ci
|
|
60
|
-
ci
|
|
61
|
-
ci --
|
|
49
|
+
ci init # Interactive setup wizard
|
|
50
|
+
ci init --create # Auto-create pipeline (non-interactive)
|
|
51
|
+
ci init --import <path> # Import YAML pipeline (non-interactive)
|
|
52
|
+
ci build # Generate a standard pipeline for the current project
|
|
53
|
+
ci run <path> [-w <name>] # Run locally (development mode)
|
|
54
|
+
ci run <path> [-w <name>] --production # Run on remote runner (production)
|
|
55
|
+
ci run <path> [-w <name>] --validate-only # Validate only, don't execute
|
|
56
|
+
ci run <path> [-w <name>] --skip-validation # Skip validation, run with interactive prompts
|
|
57
|
+
ci validate <path> [-w <name>] # Validate pipeline (alias for --validate-only)
|
|
58
|
+
ci detect-platform <path> [-w <name>] # Detect platform from YAML pipeline
|
|
59
|
+
ci detect-project # Detect project type (android, ios, kmm)
|
|
60
|
+
ci edit <path> [-w <name>] # View pipeline and edit step inputs
|
|
61
|
+
ci reset [--force] # Remove all cibuild files and folders
|
|
62
|
+
ci secrets add <var_name> <path> [-w <name>] # Add a secret (prompted interactively)
|
|
63
|
+
ci secrets add <var_name> <path> --file <file> [-w <name>] # Add a secret from a file
|
|
64
|
+
ci secrets upload [--env <name>] [--repo <owner/repo>] [--dry-run] # Upload secrets to a GitHub environment
|
|
65
|
+
ci secrets sync-workflow <path> # Sync local secret mappings into .github/workflows/ci.yml
|
|
66
|
+
ci envman <subcommand> # Internal envman CLI (used inside generated build scripts)
|
|
67
|
+
ci --version # Show version
|
|
68
|
+
ci --help # Show help
|
|
62
69
|
```
|
|
63
70
|
|
|
64
71
|
## Supported Formats
|
package/README.md
CHANGED
|
@@ -69,7 +69,9 @@ ci run .ci/pipelines/cibuild.yml -w release # Run a specific workflow
|
|
|
69
69
|
| `ci run <path> [-w <name>] --skip-validation` | Skip validation, run with interactive prompts |
|
|
70
70
|
| `ci validate <path> [-w <name>]` | Validate pipeline (alias for --validate-only) |
|
|
71
71
|
| `ci detect-platform <path> [-w <name>]` | Detect platform from YAML pipeline |
|
|
72
|
+
| `ci detect-project` | Detect project type (android, ios, kmm) from the current directory |
|
|
72
73
|
| `ci edit <path> [-w <name>]` | View pipeline and edit step inputs |
|
|
74
|
+
| `ci reset [--force]` | Remove all cibuild files and folders |
|
|
73
75
|
| `ci secrets add <var> <path> [-w <name>]` | Add a secret (prompted interactively) |
|
|
74
76
|
| `ci secrets add <var> <path> --file <file>` | Add a secret from a file |
|
|
75
77
|
| `ci secrets upload [--env <name>]` | Upload secrets to GitHub environment |
|