File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 3030 steps :
3131 - uses : actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
3232 with :
33- ref : ${{ github.event.release.target_commitish }}
33+ ref : ${{ github.event.release.tag_name }}
3434 - uses : actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0
3535 with :
3636 python-version : " 3.11"
Original file line number Diff line number Diff line change 3131
3232.kiro /
3333
34- examples /build /*
35- examples /* .zip
34+ * /build /*
35+ * /* .zip
3636
3737.env
Original file line number Diff line number Diff line change @@ -15,16 +15,15 @@ This is a monorepo containing multiple packages under the `packages/` directory:
1515
1616```
1717packages/
18- ├── aws-durable-execution-sdk-python/ # Core SDK
18+ ├── aws-durable-execution-sdk-python/ # Core SDK
1919│ ├── pyproject.toml
2020│ ├── src/
21- │ ├── tests/
22- │ └── examples/
23- ├── aws-durable-execution-sdk-python-otel/ # OpenTelemetry instrumentation
21+ │ └── tests/
22+ ├── aws-durable-execution-sdk-python-otel/ # OpenTelemetry instrumentation
2423│ ├── pyproject.toml
2524│ ├── src/
2625│ └── tests/
27- └── examples/ # Example functions and tests
26+ └── aws-durable-execution-sdk-python- examples/ # Example functions and tests
2827 ├── pyproject.toml
2928 ├── src/
3029 └── test/
@@ -93,7 +92,8 @@ hatch fmt
9392# Build distribution
9493hatch build
9594
96- # Examples deployment
95+ # Examples deployment (from examples package)
96+ cd ../aws-durable-execution-sdk-python-examples
9797hatch run examples:build
9898hatch run examples:deploy " Hello World"
9999```
@@ -309,7 +309,7 @@ tests/mypackage/mymodule_test.py
309309## Examples and Deployment
310310
311311The project includes a unified CLI tool for managing examples, deployment, and AWS account setup.
312- Run these commands from the core SDK package directory (` packages/aws-durable-execution-sdk-python ` ).
312+ Run these commands from the examples package directory (` packages/aws-durable-execution-sdk-python-examples ` ).
313313
314314To run examples tests from the repo root:
315315``` bash
You can’t perform that action at this time.
0 commit comments