Skip to content

Commit b9bf6f6

Browse files
committed
update release for server-ai
1 parent 0da0dba commit b9bf6f6

File tree

4 files changed

+5
-1
lines changed

4 files changed

+5
-1
lines changed

.github/actions/build/action.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,11 @@ runs:
1010
steps:
1111
- name: Build distribution files
1212
shell: bash
13+
working-directory: packages/sdk/server-ai
1314
run: poetry build
1415
- name: Hash build files for provenance
1516
id: package-hashes
1617
shell: bash
17-
working-directory: ./dist
18+
working-directory: packages/sdk/server-ai/dist
1819
run: |
1920
echo "package-hashes=$(sha256sum * | base64 -w0)" >> "$GITHUB_OUTPUT"

.github/workflows/ci.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,7 @@ jobs:
5959
uses: abatilo/actions-poetry@7b6d33e44b4f08d7021a1dee3c044e9c253d6439
6060

6161
- name: Install requirements
62+
working-directory: packages/sdk/server-ai
6263
run: poetry install
6364

6465
- name: Run tests

.github/workflows/manual-publish.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ jobs:
4040
uses: pypa/gh-action-pypi-publish@release/v1
4141
with:
4242
password: ${{env.PYPI_AUTH_TOKEN}}
43+
packages-dir: packages/sdk/server-ai/dist/
4344

4445
release-provenance:
4546
needs: [ 'build-publish' ]

.github/workflows/release-please.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@ jobs:
5252
uses: pypa/gh-action-pypi-publish@release/v1
5353
with:
5454
password: ${{env.PYPI_AUTH_TOKEN}}
55+
packages-dir: packages/sdk/server-ai/dist/
5556

5657
release-provenance:
5758
needs: [ 'release-package' ]

0 commit comments

Comments
 (0)