Skip to content

Commit 17703d9

Browse files
chore(release): 0.4.2 (#153)
2 parents 5293da8 + 0f4e8c0 commit 17703d9

File tree

16 files changed

+425
-235
lines changed

16 files changed

+425
-235
lines changed

.github/workflows/ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ jobs:
106106
# Cannot check more than compile action here, need GCP environment for upload, run, schedule
107107
run: |
108108
cd example
109-
poetry run -C .. vertex-deployer -log DEBUG deploy dummy_pipeline --compile --env-file example.env --skip-validation
109+
poetry run -C .. vertex-deployer -log DEBUG deploy dummy_pipeline broken_pipeline --compile --env-file example.env --skip-validation
110110
111111
- name: Test create command
112112
run: |

.github/workflows/deploy_docs.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
name: Deploy doc to GitHub Pages
22

33
on:
4-
workflow_run:
5-
workflows: ["CI and Release on main"]
6-
types: [completed]
4+
push:
5+
branches:
6+
- 'main'
77

88
env:
99
python-version: "3.10"

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -351,9 +351,9 @@ To check that your pipelines are valid, you can use the `check` command. It uses
351351
- check that your pipeline can be compiled
352352
- check that all configs related to the pipeline are respecting the pipeline definition (using a Pydantic model based on pipeline signature)
353353

354-
To validate one specific pipeline:
354+
To validate one or multiple pipeline(s):
355355
```bash
356-
vertex-deployer check dummy_pipeline
356+
vertex-deployer check dummy_pipeline <other pipeline name>
357357
```
358358

359359
To validate all pipelines in the `vertex/pipelines` folder:
@@ -491,6 +491,7 @@ create
491491
│ ├─ settings.py
492492
│ └─ utils
493493
│ ├─ config.py
494+
│ ├─ console.py
494495
│ ├─ exceptions.py
495496
│ ├─ logging.py
496497
│ ├─ models.py

0 commit comments

Comments
 (0)