@leverege/build-tools 2.93.0-beta.13 → 2.93.0-beta.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
CHANGED
|
@@ -21,11 +21,11 @@ npm install -g @leverege/build-tools
|
|
|
21
21
|
* **docker-to-registry**: used to build and deploy application docker images to the GCP artifact registry
|
|
22
22
|
* **pull-artifact**: used to pull generic artifacts from the GCP artifact registry
|
|
23
23
|
```bash
|
|
24
|
-
Usage: pull-artifact -f <artifact schema file path> -
|
|
24
|
+
Usage: pull-artifact -f <artifact schema file path> -n <package name> -v <package version>
|
|
25
25
|
```
|
|
26
26
|
* **push-artifact**: used to push generic artifacts to the GCP artifact registry
|
|
27
27
|
```bash
|
|
28
|
-
Usage: push-artifact -f <artifact schema file path> -
|
|
28
|
+
Usage: push-artifact -f <artifact schema file path> -n <package name> -v <package version>
|
|
29
29
|
```
|
|
30
30
|
|
|
31
31
|
### Helm Helpers:
|
package/package.json
CHANGED
|
@@ -12,8 +12,8 @@ program
|
|
|
12
12
|
.name( 'pull-artifact' )
|
|
13
13
|
.description( 'Pull artifacts from GCP Artifact Registry' )
|
|
14
14
|
.requiredOption( '-f, --file-path <path>', 'Path to artifacts.yaml file' )
|
|
15
|
-
.option( '-
|
|
16
|
-
.option( '-
|
|
15
|
+
.option( '-n, --package-name <name>', 'Filter by artifact package name' )
|
|
16
|
+
.option( '-v, --package-version <version>', 'Filter by artifact package version' )
|
|
17
17
|
.parse()
|
|
18
18
|
|
|
19
19
|
const options = program.opts()
|
|
@@ -12,8 +12,8 @@ program
|
|
|
12
12
|
.name( 'push-artifact' )
|
|
13
13
|
.description( 'Push artifacts to GCP Artifact Registry' )
|
|
14
14
|
.requiredOption( '-f, --file-path <path>', 'Path to artifacts.yaml file' )
|
|
15
|
-
.option( '-
|
|
16
|
-
.option( '-
|
|
15
|
+
.option( '-n, --package-name <name>', 'Filter by artifact package name' )
|
|
16
|
+
.option( '-v, --package-version <version>', 'Filter by artifact package version' )
|
|
17
17
|
.parse()
|
|
18
18
|
|
|
19
19
|
const options = program.opts()
|