blocks-cli 0.1.39__tar.gz → 0.1.40__tar.gz
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.
- {blocks-cli-0.1.39 → blocks-cli-0.1.40}/PKG-INFO +1 -1
- {blocks-cli-0.1.39 → blocks-cli-0.1.40}/blocks_cli/commands/push.py +3 -1
- {blocks-cli-0.1.39 → blocks-cli-0.1.40}/setup.py +1 -1
- {blocks-cli-0.1.39 → blocks-cli-0.1.40}/LICENSE +0 -0
- {blocks-cli-0.1.39 → blocks-cli-0.1.40}/MANIFEST.in +0 -0
- {blocks-cli-0.1.39 → blocks-cli-0.1.40}/README.md +0 -0
- {blocks-cli-0.1.39 → blocks-cli-0.1.40}/blocks_cli/__init__.py +0 -0
- {blocks-cli-0.1.39 → blocks-cli-0.1.40}/blocks_cli/api.py +0 -0
- {blocks-cli-0.1.39 → blocks-cli-0.1.40}/blocks_cli/builds.py +0 -0
- {blocks-cli-0.1.39 → blocks-cli-0.1.40}/blocks_cli/bundles.py +0 -0
- {blocks-cli-0.1.39 → blocks-cli-0.1.40}/blocks_cli/commands/__base__.py +0 -0
- {blocks-cli-0.1.39 → blocks-cli-0.1.40}/blocks_cli/commands/__init__.py +0 -0
- {blocks-cli-0.1.39 → blocks-cli-0.1.40}/blocks_cli/commands/configure.py +0 -0
- {blocks-cli-0.1.39 → blocks-cli-0.1.40}/blocks_cli/commands/create.py +0 -0
- {blocks-cli-0.1.39 → blocks-cli-0.1.40}/blocks_cli/commands/init.py +0 -0
- {blocks-cli-0.1.39 → blocks-cli-0.1.40}/blocks_cli/commands/test.py +0 -0
- {blocks-cli-0.1.39 → blocks-cli-0.1.40}/blocks_cli/config/__init__.py +0 -0
- {blocks-cli-0.1.39 → blocks-cli-0.1.40}/blocks_cli/config/auth.py +0 -0
- {blocks-cli-0.1.39 → blocks-cli-0.1.40}/blocks_cli/config/config.py +0 -0
- {blocks-cli-0.1.39 → blocks-cli-0.1.40}/blocks_cli/console.py +0 -0
- {blocks-cli-0.1.39 → blocks-cli-0.1.40}/blocks_cli/fs.py +0 -0
- {blocks-cli-0.1.39 → blocks-cli-0.1.40}/blocks_cli/package.py +0 -0
- {blocks-cli-0.1.39 → blocks-cli-0.1.40}/blocks_cli/registration.py +0 -0
- {blocks-cli-0.1.39 → blocks-cli-0.1.40}/blocks_cli.egg-info/SOURCES.txt +0 -0
- {blocks-cli-0.1.39 → blocks-cli-0.1.40}/requirements.txt +0 -0
- {blocks-cli-0.1.39 → blocks-cli-0.1.40}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: blocks-cli
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.40
|
|
4
4
|
Summary: CLI tool for Blocks, a platform for writing custom AI-enabled codebase automations in Python. Leverage a full codebase-aware API. Automatically trigger automations from Github, Slack, and other providers.
|
|
5
5
|
Home-page: https://github.com/BlocksOrg/sdk
|
|
6
6
|
Author: BlocksOrg
|
|
@@ -24,7 +24,8 @@ def push(
|
|
|
24
24
|
flag_value="patch",
|
|
25
25
|
help="Bump version for public automations. Options: major, minor, patch. Defaults to patch if no value provided.",
|
|
26
26
|
),
|
|
27
|
-
force_build: bool = typer.Option(False, "--force-build", help="Force a new build even if a successful build already exists")
|
|
27
|
+
force_build: bool = typer.Option(False, "--force-build", help="Force a new build even if a successful build already exists"),
|
|
28
|
+
build_args: Optional[str] = typer.Option(None, "--build-args", help="Build arguments to pass to the build command")
|
|
28
29
|
):
|
|
29
30
|
try:
|
|
30
31
|
warn_current_package_version()
|
|
@@ -126,6 +127,7 @@ def push(
|
|
|
126
127
|
"bundle_id": bundle_id,
|
|
127
128
|
"automations": [],
|
|
128
129
|
"force_build": force_build,
|
|
130
|
+
"build_args": build_args,
|
|
129
131
|
}
|
|
130
132
|
if bump_type is not None:
|
|
131
133
|
registration_payload["bump_type"] = bump_type
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|