Skip to content

Commit

Permalink
chore(release): 0.4.2 (#153)
Browse files Browse the repository at this point in the history
  • Loading branch information
julesbertrand authored Feb 26, 2024
2 parents 5293da8 + 0f4e8c0 commit 17703d9
Show file tree
Hide file tree
Showing 16 changed files with 425 additions and 235 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ jobs:
# Cannot check more than compile action here, need GCP environment for upload, run, schedule
run: |
cd example
poetry run -C .. vertex-deployer -log DEBUG deploy dummy_pipeline --compile --env-file example.env --skip-validation
poetry run -C .. vertex-deployer -log DEBUG deploy dummy_pipeline broken_pipeline --compile --env-file example.env --skip-validation
- name: Test create command
run: |
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/deploy_docs.yaml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
name: Deploy doc to GitHub Pages

on:
workflow_run:
workflows: ["CI and Release on main"]
types: [completed]
push:
branches:
- 'main'

env:
python-version: "3.10"
Expand Down
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -351,9 +351,9 @@ To check that your pipelines are valid, you can use the `check` command. It uses
- check that your pipeline can be compiled
- check that all configs related to the pipeline are respecting the pipeline definition (using a Pydantic model based on pipeline signature)

To validate one specific pipeline:
To validate one or multiple pipeline(s):
```bash
vertex-deployer check dummy_pipeline
vertex-deployer check dummy_pipeline <other pipeline name>
```

To validate all pipelines in the `vertex/pipelines` folder:
Expand Down Expand Up @@ -491,6 +491,7 @@ create
│ ├─ settings.py
│ └─ utils
│ ├─ config.py
│ ├─ console.py
│ ├─ exceptions.py
│ ├─ logging.py
│ ├─ models.py
Expand Down
Loading

0 comments on commit 17703d9

Please sign in to comment.