mirror of
https://github.com/hatchet-dev/hatchet.git
synced 2026-01-01 14:19:54 -06:00
* hotfix: add repository for npm publish * chore: generate protos * feat: trigger workflow * fix: remove tenant id from schedule workflow * fix: logging * feat: run returns workflow_run_id * feat: listen for run events * feat: listener calls handler * chore: address review comment
8 lines
591 B
Bash
Executable File
8 lines
591 B
Bash
Executable File
#!/bin/bash
|
|
#
|
|
# Builds python auto-generated protobuf files
|
|
|
|
poetry run python -m grpc_tools.protoc --proto_path=../api-contracts/dispatcher --python_out=./hatchet_sdk --pyi_out=./hatchet_sdk --grpc_python_out=./hatchet_sdk dispatcher.proto
|
|
poetry run python -m grpc_tools.protoc --proto_path=../api-contracts/events --python_out=./hatchet_sdk --pyi_out=./hatchet_sdk --grpc_python_out=./hatchet_sdk events.proto
|
|
poetry run python -m grpc_tools.protoc --proto_path=../api-contracts/workflows --python_out=./hatchet_sdk --pyi_out=./hatchet_sdk --grpc_python_out=./hatchet_sdk workflows.proto
|