Skip to content

Commit 9099434

Browse files
committed
chore: update references to packages/examples to new name
1 parent f50a5ad commit 9099434

3 files changed

Lines changed: 10 additions & 10 deletions

File tree

.github/workflows/pypi-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
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"

.gitignore

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ dist/
3131

3232
.kiro/
3333

34-
examples/build/*
35-
examples/*.zip
34+
*/build/*
35+
*/*.zip
3636

3737
.env

CONTRIBUTING.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -15,16 +15,15 @@ This is a monorepo containing multiple packages under the `packages/` directory:
1515

1616
```
1717
packages/
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
9493
hatch build
9594

96-
# Examples deployment
95+
# Examples deployment (from examples package)
96+
cd ../aws-durable-execution-sdk-python-examples
9797
hatch run examples:build
9898
hatch run examples:deploy "Hello World"
9999
```
@@ -309,7 +309,7 @@ tests/mypackage/mymodule_test.py
309309
## Examples and Deployment
310310

311311
The 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

314314
To run examples tests from the repo root:
315315
```bash

0 commit comments

Comments
 (0)